Home
last modified time | relevance | path

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

/external/webkit/Source/WebKit/chromium/src/
DWebGeolocationError.cpp38 m_private = GeolocationError::create(static_cast<GeolocationError::ErrorCode>(code), message); in assign()
51 WebGeolocationError::WebGeolocationError(PassRefPtr<GeolocationError> error) in WebGeolocationError()
56 WebGeolocationError& WebGeolocationError::operator=(PassRefPtr<GeolocationError> error) in operator =()
62 WebGeolocationError::operator PassRefPtr<GeolocationError>() const in operator PassRefPtr<GeolocationError>()
DWebGeolocationController.cpp49 m_private->errorOccurred(PassRefPtr<GeolocationError>(webError).get()); in errorOccurred()
DAssertMatchingEnums.cpp416 COMPILE_ASSERT_MATCHING_ENUM(WebGeolocationError::ErrorPermissionDenied, GeolocationError::Permissi…
417 COMPILE_ASSERT_MATCHING_ENUM(WebGeolocationError::ErrorPositionUnavailable, GeolocationError::Posit…
/external/webkit/Source/WebCore/page/
DGeolocationError.h38 class GeolocationError : public RefCounted<GeolocationError> {
45 …static PassRefPtr<GeolocationError> create(ErrorCode code, const String& message) { return adoptRe… in create()
51 GeolocationError(ErrorCode code, const String& message) in GeolocationError() function
DGeolocationController.h39 class GeolocationError; variable
56 void errorOccurred(GeolocationError*);
DGeolocation.h48 class GeolocationError; variable
77 void setError(GeolocationError*);
DGeolocation.cpp70 static PassRefPtr<PositionError> createPositionError(GeolocationError* error) in createPositionError()
74 case GeolocationError::PermissionDenied: in createPositionError()
77 case GeolocationError::PositionUnavailable: in createPositionError()
673 void Geolocation::setError(GeolocationError* error) in setError()
DGeolocationController.cpp104 void GeolocationController::errorOccurred(GeolocationError* error) in errorOccurred()
/external/webkit/Source/WebKit/chromium/public/
DWebGeolocationError.h36 namespace WebCore { class GeolocationError; } variable
58 WebGeolocationError(WTF::PassRefPtr<WebCore::GeolocationError>);
59 WebGeolocationError& operator=(WTF::PassRefPtr<WebCore::GeolocationError>);
60 operator WTF::PassRefPtr<WebCore::GeolocationError>() const;
64 WebPrivatePtr<WebCore::GeolocationError> m_private;
/external/webkit/Source/WebCore/platform/mock/
DGeolocationClientMock.h48 class GeolocationError; variable
59 void setError(PassRefPtr<GeolocationError>);
82 RefPtr<GeolocationError> m_lastError;
DGeolocationClientMock.cpp69 void GeolocationClientMock::setError(PassRefPtr<GeolocationError> error) in setError()
/external/webkit/Source/WebKit2/WebProcess/Geolocation/
DWebGeolocationManager.cpp100 …RefPtr<GeolocationError> error = GeolocationError::create(GeolocationError::PositionUnavailable, /… in didFailToDeterminePosition()
/external/webkit/Source/WebKit/qt/WebCoreSupport/
DGeolocationClientQt.cpp103 …RefPtr<WebCore::GeolocationError> error = GeolocationError::create(GeolocationError::PositionUnava… in startUpdating()
DDumpRenderTreeSupportQt.cpp811 GeolocationError::ErrorCode code = GeolocationError::PositionUnavailable; in setMockGeolocationError()
814 code = GeolocationError::PermissionDenied; in setMockGeolocationError()
817 code = GeolocationError::PositionUnavailable; in setMockGeolocationError()
822 mockClient->setError(GeolocationError::create(code, message)); in setMockGeolocationError()
/external/webkit/Source/WebKit/win/
DWebView.cpp6424 …RefPtr<GeolocationError> geolocationError = GeolocationError::create(GeolocationError::PositionUna… in geolocationDidFailWithError()
/external/webkit/Source/WebKit/mac/WebView/
DWebView.mm189 #import <WebCore/GeolocationError.h>
6318 …RefPtr<GeolocationError> geolocatioError = GeolocationError::create(GeolocationError::PositionUnav…
/external/webkit/Source/WebCore/
DGNUmakefile.list.am2213 Source/WebCore/page/GeolocationError.h \
DGNUmakefile.am2227 Source/WebCore/page/GeolocationError.h \
DWebCore.gypi702 'page/GeolocationError.h',
DChangeLog-2010-01-2919460 * page/GeolocationError.h:
19461 (WebCore::GeolocationError::GeolocationError):
21669 * page/GeolocationError.h: Added.
21670 (WebCore::GeolocationError::):
21671 (WebCore::GeolocationError::create):
21672 (WebCore::GeolocationError::code):
21673 (WebCore::GeolocationError::message):
/external/webkit/Source/WebCore/WebCore.xcodeproj/
Dproject.pbxproj4988 …410D5AC8000A77C64 /* GeolocationError.h in Headers */ = {isa = PBXBuildFile; fileRef = BC56CB1F10D…
11469 …000A77C64 /* GeolocationError.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType …
14347 BC56CB1F10D5AC8000A77C64 /* GeolocationError.h */,
21177 BC56CB2410D5AC8000A77C64 /* GeolocationError.h in Headers */,
/external/webkit/Source/WebKit/chromium/
DChangeLog-2011-02-164076 … [Chromium] Introduce wrapper types for WebCore::GeolocationError, WebCore::GeolocationPosition.
4094 (WebKit::WebGeolocationError::operator WTF::PassRefPtr<WebCore::GeolocationError>):