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

Unified Diff: public/web/WebGeolocationPermissionRequest.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/WebGeolocationError.h ('k') | public/web/WebGeolocationPermissionRequestManager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebGeolocationPermissionRequest.h
diff --git a/public/web/WebGeolocationPermissionRequest.h b/public/web/WebGeolocationPermissionRequest.h
index da3e02d2c6decb4ba12527310df565727de09ce3..c9fe120d68109f072bcef801f36fa1e41827e6c1 100644
--- a/public/web/WebGeolocationPermissionRequest.h
+++ b/public/web/WebGeolocationPermissionRequest.h
@@ -30,10 +30,8 @@
#include "../platform/WebPrivatePtr.h"
namespace blink {
-class Geolocation;
-}
-namespace blink {
+class Geolocation;
class WebSecurityOrigin;
// WebGeolocationPermissionRequest encapsulates a WebCore Geolocation object and represents
@@ -48,15 +46,16 @@ public:
BLINK_EXPORT void setIsAllowed(bool);
#if BLINK_IMPLEMENTATION
- WebGeolocationPermissionRequest(blink::Geolocation*);
- blink::Geolocation* geolocation() const { return m_private.get(); }
+ WebGeolocationPermissionRequest(Geolocation*);
+ Geolocation* geolocation() const { return m_private.get(); }
#endif
private:
BLINK_EXPORT void reset();
- WebPrivatePtr<blink::Geolocation> m_private;
+ WebPrivatePtr<Geolocation> m_private;
};
+
}
#endif // WebGeolocationPermissionRequest_h
« no previous file with comments | « public/web/WebGeolocationError.h ('k') | public/web/WebGeolocationPermissionRequestManager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698