HomeSort by relevance Sort by last modified time
    Searched full:watchid (Results 1 - 7 of 7) sorted by null

  /external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
timeout-clear-watch.js 7 var watchId = navigator.geolocation.watchPosition(function() {
14 navigator.geolocation.clearWatch(watchId);
permission-denied-already-clear-watch.js 25 var watchId = navigator.geolocation.watchPosition(function(p) {
32 navigator.geolocation.clearWatch(watchId);
  /external/webkit/Source/WebCore/page/
Geolocation.idl 33 void clearWatch(in long watchId);
Geolocation.h 66 void clearWatch(int watchId);
Geolocation.cpp 417 void Geolocation::clearWatch(int watchId)
419 if (watchId < firstAvailableWatchId)
422 m_watchers.remove(watchId);
  /external/webkit/Source/WebCore/bindings/js/
JSGeolocationCustom.cpp 152 int watchID = m_impl->watchPosition(positionCallback.release(), positionErrorCallback.release(), positionOptions.release());
153 return jsNumber(watchID);
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8GeolocationCustom.cpp 178 int watchId = geolocation->watchPosition(positionCallback.release(), positionErrorCallback.release(), positionOptions.release());
179 return v8::Number::New(watchId);

Completed in 241 milliseconds