OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GeolocationService
(Results
1 - 15
of
15
) sorted by null
/external/webkit/WebCore/platform/
GeolocationService.cpp
27
#include "
GeolocationService
.h"
38
static
GeolocationService
* createGeolocationServiceNull(GeolocationServiceClient*)
43
GeolocationService
::FactoryFunction*
GeolocationService
::s_factoryFunction = &createGeolocationServiceNull;
46
GeolocationService
*
GeolocationService
::create(GeolocationServiceClient* client)
51
void
GeolocationService
::useMock()
56
GeolocationService
::
GeolocationService
(GeolocationServiceClient* client)
62
void
GeolocationService
::positionChanged(
[
all
...]
GeolocationService.h
33
class
GeolocationService
;
41
virtual void geolocationServicePositionChanged(
GeolocationService
*) = 0;
42
virtual void geolocationServiceErrorOccurred(
GeolocationService
*) = 0;
45
class
GeolocationService
: public Noncopyable {
47
static
GeolocationService
* create(GeolocationServiceClient*);
48
virtual ~
GeolocationService
() { }
70
GeolocationService
(GeolocationServiceClient*);
75
typedef
GeolocationService
* (FactoryFunction)(GeolocationServiceClient*);
/external/webkit/WebCore/platform/chromium/
GeolocationServiceChromium.cpp
32
#include "
GeolocationService
.h"
36
class GeolocationServiceChromium : public
GeolocationService
{
39
:
GeolocationService
(c)
45
// This guard is the counterpart of the one in WebCore/platform/
GeolocationService
.cpp
47
static
GeolocationService
* createGeolocationService(GeolocationServiceClient* c)
52
GeolocationService
::FactoryFunction*
GeolocationService
::s_factoryFunction = &createGeolocationService;
/external/webkit/WebCore/platform/gtk/
GeolocationServiceGtk.h
23
#include "
GeolocationService
.h"
32
class GeolocationServiceGtk : public
GeolocationService
{
34
static
GeolocationService
* create(GeolocationServiceClient*);
GeolocationServiceGtk.cpp
40
GeolocationService
* GeolocationServiceGtk::create(GeolocationServiceClient* client)
45
GeolocationService
::FactoryFunction*
GeolocationService
::s_factoryFunction = &GeolocationServiceGtk::create;
48
:
GeolocationService
(client)
/external/webkit/WebCore/platform/android/
GeolocationServiceAndroid.h
29
#include "
GeolocationService
.h"
42
class GeolocationServiceAndroid : public
GeolocationService
{
44
static
GeolocationService
* create(GeolocationServiceClient*);
GeolocationServiceAndroid.cpp
47
// GeolocationServiceBridge, which in turn owns a Java
GeolocationService
50
//
GeolocationService
objects. In the case where multiple Geolocation objects
51
// exist simultaneously, the corresponsing Java
GeolocationService
objects all
54
GeolocationService
* GeolocationServiceAndroid::create(GeolocationServiceClient* client)
59
GeolocationService
::FactoryFunction*
GeolocationService
::s_factoryFunction = &GeolocationServiceAndroid::create;
62
:
GeolocationService
(client)
/external/webkit/WebCore/platform/mac/
GeolocationServiceMac.h
31
#include "
GeolocationService
.h"
46
class GeolocationServiceMac : public
GeolocationService
{
48
static
GeolocationService
* create(GeolocationServiceClient*);
GeolocationServiceMac.mm
68
GeolocationService
* GeolocationServiceMac::create(GeolocationServiceClient* client)
73
GeolocationService
::FactoryFunction*
GeolocationService
::s_factoryFunction = &GeolocationServiceMac::create;
76
:
GeolocationService
(client)
129
GeolocationService
::positionChanged();
135
GeolocationService
::errorOccurred();
/external/webkit/WebCore/platform/mock/
GeolocationServiceMock.h
29
#include "
GeolocationService
.h"
37
// This class provides a mock implementation of a
GeolocationService
for testing
42
class GeolocationServiceMock : public
GeolocationService
{
44
static
GeolocationService
* create(GeolocationServiceClient*);
GeolocationServiceMock.cpp
41
GeolocationService
* GeolocationServiceMock::create(GeolocationServiceClient* client)
48
:
GeolocationService
(client)
66
GeolocationService
::useMock();
75
GeolocationService
::useMock();
/external/webkit/WebCore/page/
Geolocation.h
34
#include "
GeolocationService
.h"
157
virtual void geolocationServicePositionChanged(
GeolocationService
*);
158
virtual void geolocationServiceErrorOccurred(
GeolocationService
*);
181
OwnPtr<
GeolocationService
> m_service;
Geolocation.cpp
217
, m_service(
GeolocationService
::create(this))
623
void Geolocation::geolocationServicePositionChanged(
GeolocationService
* service)
631
void Geolocation::geolocationServiceErrorOccurred(
GeolocationService
* service)
/frameworks/base/core/java/android/webkit/
GeolocationService.java
34
final class
GeolocationService
implements LocationListener {
37
private static final String TAG = "
geolocationService
";
51
public
GeolocationService
(long nativeObject) {
/external/webkit/WebCore/
Android.mk
382
platform/
GeolocationService
.cpp \
Completed in 808 milliseconds