| Index: chrome/browser/render_view_context_menu.h
|
| ===================================================================
|
| --- chrome/browser/render_view_context_menu.h (revision 8273)
|
| +++ chrome/browser/render_view_context_menu.h (working copy)
|
| @@ -15,7 +15,7 @@
|
| RenderViewContextMenu(
|
| Menu::Delegate* delegate,
|
| HWND owner,
|
| - ContextNode::Type type,
|
| + ContextNode node,
|
| const std::wstring& misspelled_word,
|
| const std::vector<std::wstring>& misspelled_word_suggestions,
|
| Profile* profile);
|
| @@ -23,14 +23,15 @@
|
| virtual ~RenderViewContextMenu();
|
|
|
| private:
|
| - void InitMenu(ContextNode::Type type);
|
| + void InitMenu(ContextNode node);
|
| void AppendDeveloperItems();
|
| void AppendLinkItems();
|
| void AppendImageItems();
|
| void AppendPageItems();
|
| void AppendFrameItems();
|
| - void AppendSelectionItems();
|
| + void AppendCopyItem();
|
| void AppendEditableItems();
|
| + void AppendSearchProvider();
|
|
|
| std::wstring misspelled_word_;
|
| std::vector<std::wstring> misspelled_word_suggestions_;
|
|
|