HomeSort by relevance Sort by last modified time
    Searched refs:enableHighAccuracy (Results 1 - 5 of 5) sorted by null

  /external/webkit/LayoutTests/fast/dom/Geolocation/resources/
argument-types.js 30 ObjectThrowingException.prototype.__defineGetter__("enableHighAccuracy", function() {
31 throw new Error('enableHighAccuracy getter exception');
65 test('navigator.geolocation.getCurrentPosition(emptyFunction, undefined, objectThrowingException)', true, 'Error: enableHighAccuracy getter exception');
84 test('navigator.geolocation.getCurrentPosition(emptyFunction, undefined, {enableHighAccuracy:undefined})', false);
85 test('navigator.geolocation.getCurrentPosition(emptyFunction, undefined, {enableHighAccuracy:null})', false);
86 test('navigator.geolocation.getCurrentPosition(emptyFunction, undefined, {enableHighAccuracy:{}})', false);
87 test('navigator.geolocation.getCurrentPosition(emptyFunction, undefined, {enableHighAccuracy:objectThrowingException})', false);
88 test('navigator.geolocation.getCurrentPosition(emptyFunction, undefined, {enableHighAccuracy:emptyFunction})', false);
89 test('navigator.geolocation.getCurrentPosition(emptyFunction, undefined, {enableHighAccuracy:true})', false);
90 test('navigator.geolocation.getCurrentPosition(emptyFunction, undefined, {enableHighAccuracy:42})', false)
    [all...]
  /external/webkit/WebCore/page/
PositionOptions.h 38 bool enableHighAccuracy() const { return m_highAccuracy; }
  /external/webkit/WebCore/platform/android/
GeolocationServiceAndroid.cpp 89 if (options->enableHighAccuracy())
  /external/webkit/WebCore/platform/gtk/
GeolocationServiceGtk.cpp 96 accuracyLevel = options->enableHighAccuracy() ? GEOCLUE_ACCURACY_LEVEL_DETAILED : GEOCLUE_ACCURACY_LEVEL_LOCALITY;
  /external/webkit/WebCore/platform/mac/
GeolocationServiceMac.mm 100 CLLocationAccuracy accuracy = options->enableHighAccuracy() ? kCLLocationAccuracyBest : kCLLocationAccuracyHundredMeters;

Completed in 199 milliseconds