Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / public / web / WebGeolocationError.h
index 6e25662..537432b 100644 (file)
 #include "../platform/WebCommon.h"
 #include "../platform/WebPrivatePtr.h"
 
-namespace WebCore { class GeolocationError; }
-
 namespace blink {
 
+class GeolocationError;
 class WebString;
 
 class WebGeolocationError {
@@ -51,13 +50,13 @@ public:
     BLINK_EXPORT void reset();
 
 #if BLINK_IMPLEMENTATION
-    WebGeolocationError(WebCore::GeolocationError*);
-    WebGeolocationError& operator=(WebCore::GeolocationError*);
-    operator WebCore::GeolocationError*() const;
+    WebGeolocationError(GeolocationError*);
+    WebGeolocationError& operator=(GeolocationError*);
+    operator GeolocationError*() const;
 #endif
 
 private:
-    WebPrivatePtr<WebCore::GeolocationError> m_private;
+    WebPrivatePtr<GeolocationError> m_private;
 };
 
 } // namespace blink