| 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:
|
|
|