/external/webkit/Source/WebCore/page/ |
D | Geolocation.cpp | 70 static PassRefPtr<PositionError> createPositionError(GeolocationError* error) in createPositionError() 72 PositionError::ErrorCode code = PositionError::POSITION_UNAVAILABLE; in createPositionError() 75 code = PositionError::PERMISSION_DENIED; in createPositionError() 78 code = PositionError::POSITION_UNAVAILABLE; in createPositionError() 82 return PositionError::create(code, error->message()); in createPositionError() 101 void Geolocation::GeoNotifier::setFatalError(PassRefPtr<PositionError> error) in setFatalError() 164 … RefPtr<PositionError> error = PositionError::create(PositionError::TIMEOUT, "Timeout expired"); in timerFired() 317 …notifier->setFatalError(PositionError::create(PositionError::PERMISSION_DENIED, permissionDeniedEr… in startRequest() 332 …notifier->setFatalError(PositionError::create(PositionError::POSITION_UNAVAILABLE, failedToStartSe… in startRequest() 352 …notifier->setFatalError(PositionError::create(PositionError::PERMISSION_DENIED, permissionDeniedEr… in requestUsesCachedPosition() [all …]
|
D | PositionError.h | 35 class PositionError : public RefCounted<PositionError> { 43 …static PassRefPtr<PositionError> create(ErrorCode code, const String& message) { return adoptRef(n… in create() 51 PositionError(ErrorCode code, const String& message) in PositionError() function
|
D | PositionErrorCallback.h | 34 class PositionError; variable 40 virtual void handleEvent(PositionError*) = 0;
|
D | Geolocation.h | 96 void setFatalError(PassRefPtr<PositionError>); 108 RefPtr<PositionError> m_fatalError; 153 void sendError(GeoNotifierVector&, PositionError*); 169 void handleError(PositionError*);
|
D | PositionError.idl | 28 interface [Conditional=GEOLOCATION] PositionError {
|
/external/webkit/Source/WebCore/platform/gtk/ |
D | GeolocationServiceGtk.cpp | 90 setError(PositionError::POSITION_UNAVAILABLE, "Could not connect to location provider."); in startUpdating() 106 setError(PositionError::POSITION_UNAVAILABLE, error->message); in startUpdating() 113 setError(PositionError::POSITION_UNAVAILABLE, error->message); in startUpdating() 157 PositionError* GeolocationServiceGtk::lastError() const in lastError() 184 that->setError(PositionError::POSITION_UNAVAILABLE, error->message); in getPositionCallback() 194 that->setError(PositionError::POSITION_UNAVAILABLE, "Position could not be determined."); in position_changed() 208 void GeolocationServiceGtk::setError(PositionError::ErrorCode errorCode, const char* message) in setError() 211 m_lastError = PositionError::create(errorCode, String::fromUTF8(message)); in setError()
|
D | GeolocationServiceGtk.h | 45 PositionError* lastError() const; 50 void setError(PositionError::ErrorCode, const char* message); 58 RefPtr<PositionError> m_lastError;
|
/external/webkit/Source/WebKit/android/jni/ |
D | MockGeolocation.cpp | 62 PositionError::ErrorCode codeEnum = static_cast<PositionError::ErrorCode>(code); in setError() 64 RefPtr<PositionError> error = PositionError::create(codeEnum, messageString); in setError()
|
/external/webkit/Source/WebCore/platform/mock/ |
D | GeolocationServiceMock.h | 58 static void setError(PassRefPtr<PositionError> position); 61 virtual PositionError* lastError() const { return s_lastError->get(); } in lastError() 76 static RefPtr<PositionError>* s_lastError;
|
D | GeolocationServiceMock.cpp | 41 RefPtr<PositionError>* GeolocationServiceMock::s_lastError; 74 void GeolocationServiceMock::setError(PassRefPtr<PositionError> error) in setError() 129 s_lastError = new RefPtr<PositionError>; in initStatics()
|
/external/webkit/Source/WebCore/platform/android/ |
D | GeolocationServiceAndroid.h | 54 virtual PositionError* lastError() const { return m_lastError.get(); } in lastError() 61 void newErrorAvailable(PassRefPtr<PositionError>); 73 RefPtr<PositionError> m_lastError;
|
D | GeolocationServiceBridge.cpp | 124 RefPtr<PositionError> error = in newErrorAvailable() 125 …PositionError::create(PositionError::POSITION_UNAVAILABLE, android::jstringToWtfString(env, messag… in newErrorAvailable()
|
D | GeolocationServiceAndroid.cpp | 156 void GeolocationServiceAndroid::newErrorAvailable(PassRefPtr<PositionError> error) in newErrorAvailable()
|
/external/webkit/Source/WebCore/bindings/js/ |
D | JSCustomPositionErrorCallback.h | 35 class PositionError; variable 46 virtual void handleEvent(PositionError*);
|
D | JSCustomPositionErrorCallback.cpp | 46 void JSCustomPositionErrorCallback::handleEvent(PositionError* positionError) in handleEvent()
|
/external/webkit/Source/WebCore/platform/efl/ |
D | GeolocationServiceEfl.h | 44 virtual PositionError* lastError() const; 50 RefPtr<PositionError> m_lastError;
|
D | GeolocationServiceEfl.cpp | 74 PositionError* GeolocationServiceEfl::lastError() const in lastError()
|
/external/webkit/Source/WebCore/bindings/v8/custom/ |
D | V8CustomPositionErrorCallback.h | 38 class PositionError; variable 50 virtual void handleEvent(PositionError*);
|
D | V8CustomPositionErrorCallback.cpp | 49 void V8CustomPositionErrorCallback::handleEvent(PositionError* error) in handleEvent()
|
/external/webkit/Source/WebCore/platform/ |
D | GeolocationService.h | 35 class PositionError; variable 63 virtual PositionError* lastError() const { return 0; } in lastError()
|
/external/webkit/Source/WebKit/chromium/src/ |
D | WebGeolocationClientMock.cpp | 65 case PositionError::PERMISSION_DENIED: in setError() 68 case PositionError::POSITION_UNAVAILABLE: in setError()
|
/external/webkit/Source/WebKit/qt/WebCoreSupport/ |
D | DumpRenderTreeSupportQt.cpp | 813 case PositionError::PERMISSION_DENIED: in setMockGeolocationError() 816 case PositionError::POSITION_UNAVAILABLE: in setMockGeolocationError()
|
/external/webkit/Source/WebCore/ |
D | DerivedSources.make | 332 PositionError \
|
D | CodeGenerators.pri | 335 page/PositionError.idl \
|
D | CMakeLists.txt | 340 page/PositionError.idl
|