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

  /external/webkit/WebCore/page/
Geolocation.idl 33 [Custom] long watchPosition(in PositionCallback successCallback, in PositionErrorCallback errorCallback, in PositionOptions options);
Geolocation.h 76 int watchPosition(PassRefPtr<PositionCallback>, PassRefPtr<PositionErrorCallback>, PassRefPtr<PositionOptions>);
Geolocation.cpp 280 int Geolocation::watchPosition(PassRefPtr<PositionCallback> successCallback, PassRefPtr<PositionErrorCallback> errorCallback, PassRefPtr<PositionOptions> options)
  /external/webkit/LayoutTests/fast/dom/Geolocation/resources/
permission-denied-already-clear-watch.js 1 description("Tests that when Geolocation permission has been denied prior to a call to watchPosition, and the watch is cleared in the error callback, there is no crash. This a regression test for https://bugs.webkit.org/show_bug.cgi?id=32111.");
22 var watchId = navigator.geolocation.watchPosition(function(p) {
watch.js 1 description("Tests that watchPosition correctly reports position updates and errors from the Geolocation service.");
32 navigator.geolocation.watchPosition(function(p) {
timeout-clear-watch.js 6 var watchId = navigator.geolocation.watchPosition(function() {
permission-denied-stops-watches.js 10 navigator.geolocation.watchPosition(function(p) {
  /external/webkit/WebCore/bindings/js/
JSGeolocationCustom.cpp 158 JSValue JSGeolocation::watchPosition(ExecState* exec, const ArgList& args)
176 int watchID = m_impl->watchPosition(positionCallback.release(), positionErrorCallback.release(), positionOptions.release());
  /external/webkit/WebCore/bindings/v8/custom/
V8GeolocationCustom.cpp 196 INC_STATS("DOM.Geolocation.watchPosition()");
215 int watchId = geolocation->watchPosition(positionCallback.release(), positionErrorCallback.release(), positionOptions.release());

Completed in 1670 milliseconds