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

Unified Diff: public/web/WebGeolocationPosition.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/WebGeolocationPermissionRequestManager.h ('k') | public/web/WebHistoryItem.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebGeolocationPosition.h
diff --git a/public/web/WebGeolocationPosition.h b/public/web/WebGeolocationPosition.h
index b2ef457755a37c2ae40d0feba777ae86ec217792..6d7e03e329820b87d107a5ca30894698263546ac 100644
--- a/public/web/WebGeolocationPosition.h
+++ b/public/web/WebGeolocationPosition.h
@@ -29,10 +29,10 @@
#include "../platform/WebCommon.h"
#include "../platform/WebPrivatePtr.h"
-namespace blink { class GeolocationPosition; }
-
namespace blink {
+class GeolocationPosition;
+
class WebGeolocationPosition {
public:
WebGeolocationPosition() {}
@@ -48,13 +48,13 @@ public:
BLINK_EXPORT void reset();
#if BLINK_IMPLEMENTATION
- WebGeolocationPosition(blink::GeolocationPosition*);
- WebGeolocationPosition& operator=(blink::GeolocationPosition*);
- operator blink::GeolocationPosition*() const;
+ WebGeolocationPosition(GeolocationPosition*);
+ WebGeolocationPosition& operator=(GeolocationPosition*);
+ operator GeolocationPosition*() const;
#endif
private:
- WebPrivatePtr<blink::GeolocationPosition> m_private;
+ WebPrivatePtr<GeolocationPosition> m_private;
};
} // namespace blink
« no previous file with comments | « public/web/WebGeolocationPermissionRequestManager.h ('k') | public/web/WebHistoryItem.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698