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

  /external/webkit/Source/WebKit/qt/WebCoreSupport/
GeolocationClientQt.h 56 virtual GeolocationPosition* lastPosition() { return m_lastPosition.get(); }
67 RefPtr<GeolocationPosition> m_lastPosition;
GeolocationClientQt.cpp 48 , m_lastPosition(0)
87 m_lastPosition = GeolocationPosition::create(timeStampInSeconds, latitude, longitude,
93 page->geolocationController()->positionChanged(m_lastPosition.get());
  /external/webkit/Source/WebKit/android/WebCoreSupport/
GeolocationClientImpl.cpp 102 if (m_lastPosition || m_lastError) {
128 m_lastPosition = 0;
145 return m_lastPosition.get();
163 if (!m_lastPosition
164 || isPositionMovement(m_lastPosition.get(), position.get())
165 || isPositionMoreAccurate(m_lastPosition.get(), position.get())
166 || isPositionMoreTimely(m_lastPosition.get())) {
167 m_lastPosition = position;
170 m_webViewCore->mainFrame()->page()->geolocationController()->positionChanged(m_lastPosition.get());
216 ASSERT(m_lastPosition || m_lastError)
    [all...]
GeolocationClientImpl.h 75 RefPtr<WebCore::GeolocationPosition> m_lastPosition;
  /external/webkit/Source/WebKit/chromium/src/
GeolocationClientProxy.cpp 81 m_lastPosition = webPosition;
83 m_lastPosition.clear();
85 return m_lastPosition.get();
GeolocationClientProxy.h 56 RefPtr<WebCore::GeolocationPosition> m_lastPosition;
  /external/webkit/Source/WebCore/platform/efl/
GeolocationServiceEfl.h 49 RefPtr<Geoposition> m_lastPosition;
GeolocationServiceEfl.cpp 71 return m_lastPosition.get();
  /external/webkit/Source/WebCore/platform/mock/
GeolocationClientMock.cpp 64 m_lastPosition = position;
72 m_lastPosition = 0;
127 m_lastPosition = 0;
159 return m_lastPosition.get();
174 if (m_lastPosition.get())
175 m_controller->positionChanged(m_lastPosition.get());
GeolocationClientMock.h 81 RefPtr<GeolocationPosition> m_lastPosition;
  /external/webkit/Source/WebCore/page/
GeolocationController.cpp 100 m_lastPosition = position;
117 if (m_lastPosition.get())
118 return m_lastPosition.get();
GeolocationController.h 66 RefPtr<GeolocationPosition> m_lastPosition;
Geolocation.h 203 RefPtr<Geoposition> m_lastPosition;
Geolocation.cpp 275 m_lastPosition = createGeoposition(page->geolocationController()->lastPosition());
277 m_lastPosition = m_service->lastPosition();
280 return m_lastPosition.get();
  /external/webkit/Source/WebCore/platform/gtk/
GeolocationServiceGtk.cpp 81 m_lastPosition = 0;
154 return m_lastPosition.get();
169 m_lastPosition = Geoposition::create(coordinates.release(), m_timestamp * 1000.0);
210 m_lastPosition = 0;
GeolocationServiceGtk.h 57 RefPtr<Geoposition> m_lastPosition;

Completed in 165 milliseconds