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)
42 GeolocationController::~GeolocationController()
50 PassOwnPtr<GeolocationController> GeolocationController::create(Page* page, GeolocationClient* client)
52 return adoptPtr(new GeolocationController(page, client));
55 void GeolocationController::addObserver(Geolocation* observer, bool enableHighAccuracy)
72 void GeolocationController::removeObserver(Geolocation* observer
    [all...]
GeolocationController.h 42 class GeolocationController : public Supplement<Page> {
43 WTF_MAKE_NONCOPYABLE(GeolocationController);
45 ~GeolocationController();
47 static PassOwnPtr<GeolocationController> create(Page*, GeolocationClient*);
63 static GeolocationController* from(Page* page) { return static_cast<GeolocationController*>(Supplement<Page>::from(page, supplementName())); }
66 GeolocationController(Page*, GeolocationClient*);

Completed in 99 milliseconds