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

Unified Diff: public/web/WebGeolocationController.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/WebGeolocationClient.h ('k') | public/web/WebGeolocationError.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebGeolocationController.h
diff --git a/public/web/WebGeolocationController.h b/public/web/WebGeolocationController.h
index 04d5be8616d5d30265f2ab2d751b9339940d9ab4..96ca9e8dabd4a89f636b2fed3af275c8280fe897 100644
--- a/public/web/WebGeolocationController.h
+++ b/public/web/WebGeolocationController.h
@@ -29,10 +29,9 @@
#include "../platform/WebCommon.h"
#include "../platform/WebNonCopyable.h"
-namespace blink { class GeolocationController; }
-
namespace blink {
+class GeolocationController;
class WebGeolocationPosition;
class WebGeolocationError;
@@ -44,7 +43,7 @@ public:
BLINK_EXPORT void errorOccurred(const WebGeolocationError&);
#if BLINK_IMPLEMENTATION
- WebGeolocationController(blink::GeolocationController* c)
+ WebGeolocationController(GeolocationController* c)
: m_private(c)
{
}
@@ -57,7 +56,7 @@ private:
// can be created by the consumers of Chromium WebKit.
WebGeolocationController();
- blink::GeolocationController* m_private;
+ GeolocationController* m_private;
};
} // namespace blink
« no previous file with comments | « public/web/WebGeolocationClient.h ('k') | public/web/WebGeolocationError.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698