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

Unified Diff: content/browser/tab_contents/popup_menu_helper_mac.h

Issue 9600036: Move Render(View|Widget)Host and associated classes to content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Respond to review comments. Created 8 years, 9 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
Index: content/browser/tab_contents/popup_menu_helper_mac.h
diff --git a/content/browser/tab_contents/popup_menu_helper_mac.h b/content/browser/tab_contents/popup_menu_helper_mac.h
index 74f6f6a16d5a1ff7cfd74800c633b86a08b3ded2..1c10a9ece902d34888414dec653e9fd279a1528c 100644
--- a/content/browser/tab_contents/popup_menu_helper_mac.h
+++ b/content/browser/tab_contents/popup_menu_helper_mac.h
@@ -12,15 +12,18 @@
#include "content/public/browser/notification_registrar.h"
#include "ui/gfx/rect.h"
+struct WebMenuItem;
+
+namespace content {
class RenderViewHost;
class RenderViewHostImpl;
-struct WebMenuItem;
+}
class PopupMenuHelper : public content::NotificationObserver {
public:
// Creates a PopupMenuHelper that will notify |render_view_host| when a user
// selects or cancels the popup.
- explicit PopupMenuHelper(RenderViewHost* render_view_host);
+ explicit PopupMenuHelper(content::RenderViewHost* render_view_host);
// Shows the popup menu and notifies the RenderViewHost of the selection/
// cancel.
@@ -40,7 +43,7 @@ class PopupMenuHelper : public content::NotificationObserver {
content::NotificationRegistrar notification_registrar_;
- RenderViewHostImpl* render_view_host_;
+ content::RenderViewHostImpl* render_view_host_;
DISALLOW_COPY_AND_ASSIGN(PopupMenuHelper);
};

Powered by Google App Engine
This is Rietveld 408576698