Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1804)

Unified Diff: public/web/WebGeolocationError.h

Issue 455883003: Cleanup namespace usage in public/web/Web[A-M]*.h. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « public/web/WebGeolocationController.h ('k') | public/web/WebGeolocationPermissionRequest.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebGeolocationError.h
diff --git a/public/web/WebGeolocationError.h b/public/web/WebGeolocationError.h
index f765a52106f7b5c4bc76a76804db483d19294ee8..537432b9697f9381390db6565aeeadf8b54e3298 100644
--- a/public/web/WebGeolocationError.h
+++ b/public/web/WebGeolocationError.h
@@ -29,10 +29,9 @@
#include "../platform/WebCommon.h"
#include "../platform/WebPrivatePtr.h"
-namespace blink { class GeolocationError; }
-
namespace blink {
+class GeolocationError;
class WebString;
class WebGeolocationError {
@@ -51,13 +50,13 @@ public:
BLINK_EXPORT void reset();
#if BLINK_IMPLEMENTATION
- WebGeolocationError(blink::GeolocationError*);
- WebGeolocationError& operator=(blink::GeolocationError*);
- operator blink::GeolocationError*() const;
+ WebGeolocationError(GeolocationError*);
+ WebGeolocationError& operator=(GeolocationError*);
+ operator GeolocationError*() const;
#endif
private:
- WebPrivatePtr<blink::GeolocationError> m_private;
+ WebPrivatePtr<GeolocationError> m_private;
};
} // namespace blink
« no previous file with comments | « public/web/WebGeolocationController.h ('k') | public/web/WebGeolocationPermissionRequest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698