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

Unified Diff: chrome/browser/tab_contents/render_view_context_menu.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: chrome/browser/tab_contents/render_view_context_menu.h
diff --git a/chrome/browser/tab_contents/render_view_context_menu.h b/chrome/browser/tab_contents/render_view_context_menu.h
index 23b49d5a5312d650969f27a58947bf86f26fd598..24b45135fd19d4def8fb5b5d6aca01d99f0f8e0c 100644
--- a/chrome/browser/tab_contents/render_view_context_menu.h
+++ b/chrome/browser/tab_contents/render_view_context_menu.h
@@ -25,11 +25,11 @@
class ExtensionMenuItem;
class PrintPreviewContextMenuObserver;
class Profile;
-class RenderViewHost;
class SpellingMenuObserver;
class SpellCheckerSubMenuObserver;
namespace content {
+class RenderViewHost;
class WebContents;
}
@@ -112,7 +112,7 @@ class RenderViewContextMenuProxy {
// Retrieve the RenderViewHost (or Profile) instance associated with a context
// menu, respectively.
- virtual RenderViewHost* GetRenderViewHost() const = 0;
+ virtual content::RenderViewHost* GetRenderViewHost() const = 0;
virtual Profile* GetProfile() const = 0;
};
@@ -152,7 +152,7 @@ class RenderViewContextMenu : public ui::SimpleMenuModel::Delegate,
bool enabled,
bool hidden,
const string16& title) OVERRIDE;
- virtual RenderViewHost* GetRenderViewHost() const OVERRIDE;
+ virtual content::RenderViewHost* GetRenderViewHost() const OVERRIDE;
virtual Profile* GetProfile() const OVERRIDE;
protected:

Powered by Google App Engine
This is Rietveld 408576698