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

Unified Diff: public/web/WebGeolocationController.h

Issue 401973003: Rename WebCore namespace to blink in Public (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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/WebFrame.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 4a4df54fcce2342eda54cbf0235acdd1b304d36b..04d5be8616d5d30265f2ab2d751b9339940d9ab4 100644
--- a/public/web/WebGeolocationController.h
+++ b/public/web/WebGeolocationController.h
@@ -29,7 +29,7 @@
#include "../platform/WebCommon.h"
#include "../platform/WebNonCopyable.h"
-namespace WebCore { class GeolocationController; }
+namespace blink { class GeolocationController; }
namespace blink {
@@ -44,12 +44,12 @@ public:
BLINK_EXPORT void errorOccurred(const WebGeolocationError&);
#if BLINK_IMPLEMENTATION
- WebGeolocationController(WebCore::GeolocationController* c)
+ WebGeolocationController(blink::GeolocationController* c)
: m_private(c)
{
}
- WebCore::GeolocationController* controller() const { return m_private; }
+ blink::GeolocationController* controller() const { return m_private; }
#endif
private:
@@ -57,7 +57,7 @@ private:
// can be created by the consumers of Chromium WebKit.
WebGeolocationController();
- WebCore::GeolocationController* m_private;
+ blink::GeolocationController* m_private;
};
} // namespace blink
« no previous file with comments | « public/web/WebFrame.h ('k') | public/web/WebGeolocationError.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698