HomeSort by relevance Sort by last modified time
    Searched defs:GeolocationController (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/modules/geolocation/
GeolocationController.cpp 27 #include "modules/geolocation/GeolocationController.h"
36 GeolocationController::GeolocationController(Page* page, GeolocationClient* client)
43 void GeolocationController::startUpdatingIfNeeded()
51 void GeolocationController::stopUpdatingIfNeeded()
59 GeolocationController::~GeolocationController()
67 PassOwnPtr<GeolocationController> GeolocationController::create(Page* page, GeolocationClient* client)
69 return adoptPtr(new GeolocationController(page, client))
    [all...]
GeolocationController.h 43 class GeolocationController : public Supplement<Page>, public PageLifecycleObserver {
44 WTF_MAKE_NONCOPYABLE(GeolocationController);
46 ~GeolocationController();
48 static PassOwnPtr<GeolocationController> create(Page*, GeolocationClient*);
65 static GeolocationController* from(Page* page) { return static_cast<GeolocationController*>(Supplement<Page>::from(page, supplementName())); }
68 GeolocationController(Page*, GeolocationClient*);

Completed in 426 milliseconds