Searched refs:watchId (Results 1 - 6 of 6) sorted by relevance

/external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
H A Dtimeout-clear-watch.js7 var watchId = navigator.geolocation.watchPosition(function() { variable
14 navigator.geolocation.clearWatch(watchId);
H A Dpermission-denied-already-clear-watch.js25 var watchId = navigator.geolocation.watchPosition(function(p) {
32 navigator.geolocation.clearWatch(watchId);
/external/webkit/Source/WebCore/page/
H A DGeolocation.idl33 void clearWatch(in long watchId);
H A DGeolocation.h66 void clearWatch(int watchId);
H A DGeolocation.cpp417 void Geolocation::clearWatch(int watchId) argument
419 if (watchId < firstAvailableWatchId)
422 m_watchers.remove(watchId);
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8GeolocationCustom.cpp178 int watchId = geolocation->watchPosition(positionCallback.release(), positionErrorCallback.release(), positionOptions.release()); local
179 return v8::Number::New(watchId);

Completed in 121 milliseconds