| Index: components/renderer_context_menu/context_menu_delegate.h
|
| diff --git a/components/renderer_context_menu/context_menu_delegate.h b/components/renderer_context_menu/context_menu_delegate.h
|
| index 57327b16cb9b084622d8941d344bbab35555c72e..f592dcc591bdbdfb690746e94c9b57f50b42a25d 100644
|
| --- a/components/renderer_context_menu/context_menu_delegate.h
|
| +++ b/components/renderer_context_menu/context_menu_delegate.h
|
| @@ -7,7 +7,7 @@
|
|
|
| #include "base/memory/scoped_ptr.h"
|
|
|
| -class RenderViewContextMenu;
|
| +class RenderViewContextMenuBase;
|
|
|
| namespace content {
|
| class WebContents;
|
| @@ -25,12 +25,12 @@ class ContextMenuDelegate {
|
|
|
| // Builds and returns a context menu for a context specified by |params|.
|
| // The returned value can be used to display the context menu.
|
| - virtual scoped_ptr<RenderViewContextMenu> BuildMenu(
|
| + virtual scoped_ptr<RenderViewContextMenuBase> BuildMenu(
|
| content::WebContents* web_contents,
|
| const content::ContextMenuParams& params) = 0;
|
|
|
| // Displays the context menu.
|
| - virtual void ShowMenu(scoped_ptr<RenderViewContextMenu> menu) = 0;
|
| + virtual void ShowMenu(scoped_ptr<RenderViewContextMenuBase> menu) = 0;
|
|
|
| private:
|
| DISALLOW_COPY_AND_ASSIGN(ContextMenuDelegate);
|
|
|