| Index: chrome/browser/renderer_context_menu/context_menu_content_type.h
|
| ===================================================================
|
| --- chrome/browser/renderer_context_menu/context_menu_content_type.h (revision 256983)
|
| +++ chrome/browser/renderer_context_menu/context_menu_content_type.h (working copy)
|
| @@ -65,22 +65,21 @@
|
| const content::ContextMenuParams& params,
|
| bool supports_custom_items);
|
|
|
| + const content::ContextMenuParams& params() const { return params_; }
|
| +
|
| const extensions::Extension* GetExtension() const;
|
|
|
| - content::ContextMenuParams params_;
|
| - content::WebContents* source_web_contents_;
|
| - Profile* profile_;
|
| - bool supports_custom_items_;
|
| - bool has_custom_items_;
|
| -
|
| private:
|
| friend class ContextMenuContentTypeFactory;
|
| friend class ContextMenuContentTypeTest;
|
|
|
| - bool HasCustomItems(const std::vector<content::MenuItem>& items) const;
|
| - void Initialize();
|
| bool SupportsGroupInternal(int group);
|
|
|
| + const content::ContextMenuParams params_;
|
| + content::WebContents* source_web_contents_;
|
| + Profile* profile_;
|
| + const bool supports_custom_items_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(ContextMenuContentType);
|
| };
|
|
|
|
|