Home
last modified time | relevance | path

Searched refs:GeolocationController (Results 1 – 24 of 24) sorted by relevance

/external/webkit/Source/WebCore/page/
DGeolocationController.cpp36 GeolocationController::GeolocationController(Page* page, GeolocationClient* client) in GeolocationController() function in WebCore::GeolocationController
42 GeolocationController::~GeolocationController() in ~GeolocationController()
50 void GeolocationController::addObserver(Geolocation* observer, bool enableHighAccuracy) in addObserver()
67 void GeolocationController::removeObserver(Geolocation* observer) in removeObserver()
83 void GeolocationController::requestPermission(Geolocation* geolocation) in requestPermission()
89 void GeolocationController::cancelPermissionRequest(Geolocation* geolocation) in cancelPermissionRequest()
95 void GeolocationController::positionChanged(GeolocationPosition* position) in positionChanged()
104 void GeolocationController::errorOccurred(GeolocationError* error) in errorOccurred()
112 GeolocationPosition* GeolocationController::lastPosition() in lastPosition()
DGeolocationController.h43 class GeolocationController {
44 WTF_MAKE_NONCOPYABLE(GeolocationController);
46 GeolocationController(Page*, GeolocationClient*);
47 ~GeolocationController();
DPage.h63 class GeolocationController; variable
180GeolocationController* geolocationController() const { return m_geolocationController.get(); } in geolocationController()
336 OwnPtr<GeolocationController> m_geolocationController;
DPage.cpp148 …, m_geolocationController(adoptPtr(new GeolocationController(this, pageClients.geolocationClient))) in Page()
/external/webkit/Source/WebKit/chromium/public/
DWebGeolocationController.h32 namespace WebCore { class GeolocationController; } variable
47 WebGeolocationController(WebCore::GeolocationController* c) in WebGeolocationController()
52 WebCore::GeolocationController* controller() const { return m_private; } in controller()
60 WebCore::GeolocationController* m_private;
/external/webkit/Source/WebCore/platform/mock/
DGeolocationClientMock.h46 class GeolocationController; variable
57 void setController(GeolocationController*);
80 GeolocationController* m_controller;
DGeolocationClientMock.cpp56 void GeolocationClientMock::setController(GeolocationController *controller) in setController()
/external/webkit/Source/WebKit/chromium/src/
DGeolocationClientProxy.h44 void setController(WebCore::GeolocationController *controller);
DGeolocationClientProxy.cpp47 void GeolocationClientProxy::setController(WebCore::GeolocationController* controller) in setController()
/external/webkit/LayoutTests/fast/dom/Geolocation/
Dwindow-close-crash-expected.txt2 when the GeolocationController is destroyed.
/external/webkit/Source/WebCore/
DCMakeLists.txt1013 page/GeolocationController.cpp
DChangeLog46128 Geolocation::reset() detaches from the GeolocationController,
46143 Since GeolocationController is owned by Page, and all Geolocation
46144 objects will now unsubscribe from the GeolocationController on
46146 GeolocationController's destructor. Instead we can simply assert
46174 * page/GeolocationController.cpp:
46175 (WebCore::GeolocationController::~GeolocationController):
49292 * page/GeolocationController.cpp:
49293 (WebCore::GeolocationController::~GeolocationController):
49652 Geolocation::reset() detaches from the GeolocationController,
49667 Since GeolocationController is owned by Page, and all Geolocation
[all …]
DGNUmakefile.list.am2211 Source/WebCore/page/GeolocationController.cpp \
2212 Source/WebCore/page/GeolocationController.h \
DWebCore.pro922 page/GeolocationController.cpp \
DGNUmakefile.am2225 Source/WebCore/page/GeolocationController.cpp \
2226 Source/WebCore/page/GeolocationController.h \
DWebCore.gypi701 'page/GeolocationController.h',
3432 'page/GeolocationController.cpp',
DChangeLog-2010-01-292929 * page/GeolocationController.cpp:
2930 (WebCore::GeolocationController::~GeolocationController): Add check for m_client being 0.
2931 (WebCore::GeolocationController::addObserver): Ditto.
2932 (WebCore::GeolocationController::removeObserver): Ditto.
2933 (WebCore::GeolocationController::lastPosition): Ditto.
3543 * page/GeolocationController.cpp:
3544 (WebCore::GeolocationController::~GeolocationController):
6426 * page/GeolocationController.cpp:
6427 (WebCore::GeolocationController::positionChanged): Copy observers to vector while iterating.
6428 (WebCore::GeolocationController::errorOccurred): Copy observers to vector while iterating.
[all …]
DChangeLog-2010-12-061830 * page/GeolocationController.cpp:
1831 (WebCore::GeolocationController::requestPermission):
1832 (WebCore::GeolocationController::cancelPermissionRequest):
1833 * page/GeolocationController.h:
13472 * page/GeolocationController.cpp:
13473 (WebCore::GeolocationController::GeolocationController):
13474 * page/GeolocationController.h:
93315 This change passes the enableHighAccuracy request option to the GeolocationController.
93316 The GeolocationController tracks whether this should be used by the client.
93323 * page/GeolocationController.cpp:
[all …]
DChangeLog-2011-02-1625088 GeolocationController should call stopUpdating on destruction
25093 * page/GeolocationController.cpp:
25094 (WebCore::GeolocationController::~GeolocationController):
DChangeLog-2010-05-248533 * page/GeolocationController.cpp:
8534 (WebCore::GeolocationController::positionChanged):
8535 (WebCore::GeolocationController::lastPosition):
8536 * page/GeolocationController.h:
/external/webkit/Source/WebKit/mac/WebView/
DWebView.mm188 #import <WebCore/GeolocationController.h>
/external/webkit/Source/WebCore/WebCore.xcodeproj/
Dproject.pbxproj4985 …C8000A77C64 /* GeolocationController.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC56CB1C10…
4986 …AC8000A77C64 /* GeolocationController.h in Headers */ = {isa = PBXBuildFile; fileRef = BC56CB1D10D…
11466 …4 /* GeolocationController.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType =…
11467 …7C64 /* GeolocationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType …
14345 BC56CB1C10D5AC8000A77C64 /* GeolocationController.cpp */,
14346 BC56CB1D10D5AC8000A77C64 /* GeolocationController.h */,
21176 BC56CB2210D5AC8000A77C64 /* GeolocationController.h in Headers */,
24023 BC56CB2110D5AC8000A77C64 /* GeolocationController.cpp in Sources */,
/external/webkit/Source/WebKit/chromium/
DChangeLog-2011-02-164080 position and error updates to the WebCore::GeolocationController.
/external/webkit/Tools/
DChangeLog-2011-02-163826 GeolocationController should call stopUpdating on destruction