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

Unified Diff: content/renderer/geolocation_dispatcher.h

Issue 11232014: Move a bunch of code in content\renderer to the content namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix mac Created 8 years, 2 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 | « content/renderer/external_popup_menu_browsertest.cc ('k') | content/renderer/geolocation_dispatcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/geolocation_dispatcher.h
===================================================================
--- content/renderer/geolocation_dispatcher.h (revision 163045)
+++ content/renderer/geolocation_dispatcher.h (working copy)
@@ -10,12 +10,6 @@
#include "third_party/WebKit/Source/WebKit/chromium/public/WebGeolocationClient.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebGeolocationController.h"
-class RenderViewImpl;
-
-namespace content {
-struct Geoposition;
-}
-
namespace WebKit {
class WebGeolocationController;
class WebGeolocationPermissionRequest;
@@ -23,10 +17,14 @@
class WebGeolocationPosition;
}
+namespace content {
+class RenderViewImpl;
+struct Geoposition;
+
// GeolocationDispatcher is a delegate for Geolocation messages used by
// WebKit.
// It's the complement of GeolocationDispatcherHost (owned by RenderViewHost).
-class GeolocationDispatcher : public content::RenderViewObserver,
+class GeolocationDispatcher : public RenderViewObserver,
public WebKit::WebGeolocationClient {
public:
explicit GeolocationDispatcher(RenderViewImpl* render_view);
@@ -65,4 +63,6 @@
bool updating_;
};
+} // namespace content
+
#endif // CONTENT_RENDERER_GEOLOCATION_DISPATCHER_H_
« no previous file with comments | « content/renderer/external_popup_menu_browsertest.cc ('k') | content/renderer/geolocation_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698