OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:enableHighAccuracy
(Results
1 - 7
of
7
) sorted by null
/external/webkit/Source/WebCore/page/
GeolocationController.cpp
50
void GeolocationController::addObserver(Geolocation* observer, bool
enableHighAccuracy
)
56
if (
enableHighAccuracy
)
60
if (
enableHighAccuracy
)
GeolocationController.h
49
void addObserver(Geolocation*, bool
enableHighAccuracy
);
PositionOptions.h
38
bool
enableHighAccuracy
() const { return m_highAccuracy; }
Geolocation.cpp
708
page->geolocationController()->addObserver(this, notifier->m_options->
enableHighAccuracy
());
/external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
argument-types.js
30
ObjectThrowingException.prototype.__defineGetter__("
enableHighAccuracy
", function() {
31
throw new Error('
enableHighAccuracy
getter exception');
67
test('navigator.geolocation.getCurrentPosition(emptyFunction, undefined, objectThrowingException)', true, 'Error:
enableHighAccuracy
getter exception');
86
test('navigator.geolocation.getCurrentPosition(emptyFunction, undefined, {
enableHighAccuracy
:undefined})', false);
87
test('navigator.geolocation.getCurrentPosition(emptyFunction, undefined, {
enableHighAccuracy
:null})', false);
88
test('navigator.geolocation.getCurrentPosition(emptyFunction, undefined, {
enableHighAccuracy
:{}})', false);
89
test('navigator.geolocation.getCurrentPosition(emptyFunction, undefined, {
enableHighAccuracy
:objectThrowingException})', false);
90
test('navigator.geolocation.getCurrentPosition(emptyFunction, undefined, {
enableHighAccuracy
:emptyFunction})', false);
91
test('navigator.geolocation.getCurrentPosition(emptyFunction, undefined, {
enableHighAccuracy
:true})', false);
92
test('navigator.geolocation.getCurrentPosition(emptyFunction, undefined, {
enableHighAccuracy
:42})', false)
[
all
...]
/external/webkit/Source/WebCore/platform/android/
GeolocationServiceAndroid.cpp
98
if (options->
enableHighAccuracy
())
/external/webkit/Source/WebCore/platform/gtk/
GeolocationServiceGtk.cpp
97
accuracyLevel = options->
enableHighAccuracy
() ? GEOCLUE_ACCURACY_LEVEL_DETAILED : GEOCLUE_ACCURACY_LEVEL_LOCALITY;
Completed in 164 milliseconds