HomeSort by relevance Sort by last modified time
    Searched full:geolocationservice (Results 1 - 25 of 31) sorted by null

1 2

  /external/webkit/Source/WebCore/platform/
GeolocationService.cpp 27 #include "GeolocationService.h"
39 static GeolocationService* createGeolocationServiceNull(GeolocationServiceClient*)
44 GeolocationService::FactoryFunction* GeolocationService::s_factoryFunction = &createGeolocationServiceNull;
45 GeolocationService::FactoryFunction* GeolocationService::s_mockFactoryFunction = &createGeolocationServiceNull;
47 GeolocationService::FactoryFunction* GeolocationService::s_mockFactoryFunction = &GeolocationServiceMock::create;
50 GeolocationService* GeolocationService::create(GeolocationServiceClient* client
    [all...]
GeolocationService.h 33 class GeolocationService;
41 virtual void geolocationServicePositionChanged(GeolocationService*) = 0;
42 virtual void geolocationServiceErrorOccurred(GeolocationService*) = 0;
45 class GeolocationService {
46 WTF_MAKE_NONCOPYABLE(GeolocationService);
48 static GeolocationService* create(GeolocationServiceClient*);
49 virtual ~GeolocationService() { }
69 typedef GeolocationService* (FactoryFunction)(GeolocationServiceClient*);
73 GeolocationService(GeolocationServiceClient*);
  /external/webkit/Source/WebCore/platform/efl/
GeolocationServiceEfl.cpp 31 GeolocationService::FactoryFunction* GeolocationService::s_factoryFunction = &GeolocationServiceEfl::create;
33 GeolocationService* GeolocationServiceEfl::create(GeolocationServiceClient* client)
39 : GeolocationService(client)
GeolocationServiceEfl.h 25 #include "GeolocationService.h"
32 class GeolocationServiceEfl : public GeolocationService {
34 static GeolocationService* create(GeolocationServiceClient*);
  /external/webkit/Source/WebCore/platform/gtk/
GeolocationServiceGtk.h 24 #include "GeolocationService.h"
33 class GeolocationServiceGtk : public GeolocationService {
35 static GeolocationService* create(GeolocationServiceClient*);
GeolocationServiceGtk.cpp 41 GeolocationService* GeolocationServiceGtk::create(GeolocationServiceClient* client)
46 GeolocationService::FactoryFunction* GeolocationService::s_factoryFunction = &GeolocationServiceGtk::create;
49 : GeolocationService(client)
  /external/webkit/Source/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 43 GeolocationService* GeolocationServiceMock::create(GeolocationServiceClient* client)
50 : GeolocationService(client)
68 GeolocationService::useMock();
77 GeolocationService::useMock();
  /external/webkit/Source/WebCore/platform/android/
GeolocationServiceAndroid.h 29 #include "GeolocationService.h"
42 class GeolocationServiceAndroid : public GeolocationService {
44 static GeolocationService* create(GeolocationServiceClient*);
GeolocationServiceAndroid.cpp 48 // GeolocationServiceBridge, which in turn owns a Java GeolocationService
51 // GeolocationService objects. In the case where multiple Geolocation objects
52 // exist simultaneously, the corresponsing Java GeolocationService objects all
55 GeolocationService* GeolocationServiceAndroid::create(GeolocationServiceClient* client)
60 GeolocationService::FactoryFunction* GeolocationService::s_factoryFunction = &GeolocationServiceAndroid::create;
63 : GeolocationService(client)
GeolocationServiceBridge.cpp 40 static const char* javaGeolocationServiceClassName = "android/webkit/GeolocationService";
176 // Get the Java GeolocationService class.
180 // Set up the methods we wish to call on the Java GeolocationService class.
190 // Create the Java GeolocationService object.
203 // Register to handle calls to native methods of the Java GeolocationService
  /external/webkit/Source/WebCore/page/
Geolocation.h 39 #include "GeolocationService.h"
79 GeolocationService* getGeolocationService() const { return m_service.get(); }
182 virtual void geolocationServicePositionChanged(GeolocationService*);
183 virtual void geolocationServiceErrorOccurred(GeolocationService*);
198 OwnPtr<GeolocationService> m_service;
Geolocation.cpp 222 , m_service(GeolocationService::create(this))
681 void Geolocation::geolocationServicePositionChanged(GeolocationService* service)
689 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";
52 public GeolocationService(Context context, long nativeObject) {
  /external/webkit/Source/WebKit/android/jni/
MockGeolocation.cpp 26 // The functions in this file are used to configure the mock GeolocationService
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
GeolocationClientQt.h 42 // This class provides a implementation of a GeolocationService for qtWebkit.
  /external/webkit/Source/WebCore/bindings/js/
JSGeolocationCustom.cpp 40 #include "GeolocationService.h"
  /external/webkit/Source/WebKit/chromium/public/
WebViewClient.h 288 virtual WebGeolocationService* geolocationService() { return 0; }
  /external/webkit/Source/WebKit/chromium/src/
ChromeClientImpl.cpp 48 #include "GeolocationService.h"
  /external/webkit/Source/WebCore/
Android.mk 546 platform/GeolocationService.cpp \
    [all...]
WebCore.pro     [all...]
CMakeLists.txt 1058 platform/GeolocationService.cpp
    [all...]
ChangeLog     [all...]
ChangeLog-2010-05-24     [all...]
GNUmakefile.list.am     [all...]

Completed in 71 milliseconds

1 2