Home
last modified time | relevance | path

Searched refs:GeolocationError (Results 1 – 10 of 10) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/web/
DWebGeolocationError.cpp36 m_private = GeolocationError::create(static_cast<GeolocationError::ErrorCode>(code), message); in assign()
49 WebGeolocationError::WebGeolocationError(GeolocationError* error) in WebGeolocationError()
54 WebGeolocationError& WebGeolocationError::operator=(GeolocationError* error) in operator =()
60 WebGeolocationError::operator GeolocationError*() const in operator GeolocationError*()
DWebGeolocationController.cpp44 m_private->errorOccurred(static_cast<GeolocationError*>(webError)); in errorOccurred()
DAssertMatchingEnums.cpp521 COMPILE_ASSERT_MATCHING_ENUM(WebGeolocationError::ErrorPermissionDenied, GeolocationError::Permissi…
522 COMPILE_ASSERT_MATCHING_ENUM(WebGeolocationError::ErrorPositionUnavailable, GeolocationError::Posit…
/external/chromium_org/third_party/WebKit/Source/modules/geolocation/
DGeolocationError.h33 class GeolocationError : public GarbageCollectedFinalized<GeolocationError> {
40 static GeolocationError* create(ErrorCode code, const String& message) in create()
42 return new GeolocationError(code, message); in create()
50 GeolocationError(ErrorCode code, const String& message) in GeolocationError() function
DGeolocationController.h40 class GeolocationError; variable
58 void errorOccurred(GeolocationError*);
DGeolocationController.cpp156 …errorOccurred(GeolocationError::create(GeolocationError::PositionUnavailable, "PositionUnavailable… in positionChanged()
166 void GeolocationController::errorOccurred(GeolocationError* error) in errorOccurred()
DGeolocation.h48 class GeolocationError; variable
86 void setError(GeolocationError*);
DGeolocation.cpp64 static PositionError* createPositionError(GeolocationError* error) in createPositionError()
68 case GeolocationError::PermissionDenied: in createPositionError()
71 case GeolocationError::PositionUnavailable: in createPositionError()
480 void Geolocation::setError(GeolocationError* error) in setError()
/external/chromium_org/third_party/WebKit/public/web/
DWebGeolocationError.h34 class GeolocationError; variable
53 WebGeolocationError(GeolocationError*);
54 WebGeolocationError& operator=(GeolocationError*);
55 operator GeolocationError*() const;
59 WebPrivatePtr<GeolocationError> m_private;
/external/chromium_org/third_party/WebKit/Source/modules/geolocation/testing/
DGeolocationClientMock.cpp172 …(*it)->errorOccurred(GeolocationError::create(GeolocationError::PositionUnavailable, m_errorMessag… in controllerTimerFired()