Searched refs:WebGeolocationError (Results 1 - 6 of 6) sorted by relevance

/external/webkit/Source/WebKit/chromium/src/
H A DWebGeolocationError.cpp27 #include "WebGeolocationError.h"
36 void WebGeolocationError::assign(Error code, const WebString& message)
41 void WebGeolocationError::assign(const WebGeolocationError& other)
46 void WebGeolocationError::reset()
51 WebGeolocationError::WebGeolocationError(PassRefPtr<GeolocationError> error) function in class:WebKit::WebGeolocationError
56 WebGeolocationError& WebGeolocationError::operator=(PassRefPtr<GeolocationError> error)
62 WebGeolocationError
[all...]
H A DWebGeolocationClientMock.cpp41 #include "WebGeolocationError.h"
63 WebGeolocationError::Error code;
66 code = WebGeolocationError::ErrorPermissionDenied;
69 code = WebGeolocationError::ErrorPositionUnavailable;
76 WebGeolocationError webError(code, message);
H A DWebGeolocationController.cpp32 #include "WebGeolocationError.h"
47 void WebGeolocationController::errorOccurred(const WebGeolocationError& webError)
H A DAssertMatchingEnums.cpp71 #include "WebGeolocationError.h"
416 COMPILE_ASSERT_MATCHING_ENUM(WebGeolocationError::ErrorPermissionDenied, GeolocationError::PermissionDenied);
417 COMPILE_ASSERT_MATCHING_ENUM(WebGeolocationError::ErrorPositionUnavailable, GeolocationError::PositionUnavailable);
/external/webkit/Source/WebKit/chromium/public/
H A DWebGeolocationError.h42 class WebGeolocationError { class in namespace:WebKit
49 WebGeolocationError(Error code, const WebString& message) { assign(code, message); } function in class:WebKit::WebGeolocationError
50 WebGeolocationError(const WebGeolocationError& other) { assign(other); } function in class:WebKit::WebGeolocationError
51 ~WebGeolocationError() { reset(); }
54 WEBKIT_API void assign(const WebGeolocationError&);
58 WebGeolocationError(WTF::PassRefPtr<WebCore::GeolocationError>);
59 WebGeolocationError& operator=(WTF::PassRefPtr<WebCore::GeolocationError>);
H A DWebGeolocationController.h37 class WebGeolocationError;
44 WEBKIT_API void errorOccurred(const WebGeolocationError&);

Completed in 150 milliseconds