OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GeolocationController
(Results
1 - 17
of
17
) sorted by null
/external/chromium_org/third_party/WebKit/public/web/
WebGeolocationController.h
32
namespace WebCore { class
GeolocationController
; }
47
WebGeolocationController(WebCore::
GeolocationController
* c)
52
WebCore::
GeolocationController
* controller() const { return m_private; }
60
WebCore::
GeolocationController
* m_private;
/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*);
Geolocation.cpp
35
#include "modules/geolocation/
GeolocationController
.h"
268
GeolocationController
::from(page)->cancelPermissionRequest(this);
282
m_lastPosition = createGeoposition(
GeolocationController
::from(page)->lastPosition());
595
GeolocationController
::from(page)->requestPermission(this);
648
GeolocationController
::from(page)->addObserver(this, notifier->options()->enableHighAccuracy());
658
GeolocationController
::from(page)->removeObserver(this);
Geolocation.h
43
class
GeolocationController
;
/external/chromium_org/third_party/WebKit/Source/core/platform/mock/
GeolocationClientMock.h
44
class
GeolocationController
;
55
void setController(
GeolocationController
*);
80
GeolocationController
* m_controller;
GeolocationClientMock.cpp
35
#include "modules/geolocation/
GeolocationController
.h"
56
void GeolocationClientMock::setController(
GeolocationController
*controller)
/external/chromium_org/third_party/WebKit/Source/web/
GeolocationClientProxy.h
44
void setController(WebCore::
GeolocationController
*controller);
GeolocationClientProxy.cpp
46
void GeolocationClientProxy::setController(WebCore::
GeolocationController
* controller)
WebViewImpl.cpp
122
#include "modules/geolocation/
GeolocationController
.h"
464
m_geolocationClientProxy->setController(
GeolocationController
::from(m_page.get()));
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorPageAgent.cpp
72
#include "modules/geolocation/
GeolocationController
.h"
[
all
...]
/external/chromium_org/third_party/WebKit/Source/modules/
modules.target.darwin-arm.mk
92
third_party/WebKit/Source/modules/geolocation/
GeolocationController
.cpp \
modules.target.darwin-mips.mk
92
third_party/WebKit/Source/modules/geolocation/
GeolocationController
.cpp \
modules.target.darwin-x86.mk
92
third_party/WebKit/Source/modules/geolocation/
GeolocationController
.cpp \
modules.target.linux-arm.mk
92
third_party/WebKit/Source/modules/geolocation/
GeolocationController
.cpp \
modules.target.linux-mips.mk
92
third_party/WebKit/Source/modules/geolocation/
GeolocationController
.cpp \
modules.target.linux-x86.mk
92
third_party/WebKit/Source/modules/geolocation/
GeolocationController
.cpp \
Completed in 562 milliseconds