| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_RENDERER_CONTEXT_MENU_RENDER_VIEW_CONTEXT_MENU_H_ | 5 #ifndef CHROME_BROWSER_RENDERER_CONTEXT_MENU_RENDER_VIEW_CONTEXT_MENU_H_ |
| 6 #define CHROME_BROWSER_RENDERER_CONTEXT_MENU_RENDER_VIEW_CONTEXT_MENU_H_ | 6 #define CHROME_BROWSER_RENDERER_CONTEXT_MENU_RENDER_VIEW_CONTEXT_MENU_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 #include "content/public/common/context_menu_params.h" | 21 #include "content/public/common/context_menu_params.h" |
| 22 #include "ui/base/models/simple_menu_model.h" | 22 #include "ui/base/models/simple_menu_model.h" |
| 23 #include "ui/base/window_open_disposition.h" | 23 #include "ui/base/window_open_disposition.h" |
| 24 #include "ui/gfx/geometry/vector2d.h" | 24 #include "ui/gfx/geometry/vector2d.h" |
| 25 | 25 |
| 26 #if defined(ENABLE_EXTENSIONS) | 26 #if defined(ENABLE_EXTENSIONS) |
| 27 #include "chrome/browser/extensions/context_menu_matcher.h" | 27 #include "chrome/browser/extensions/context_menu_matcher.h" |
| 28 #include "chrome/browser/extensions/menu_manager.h" | 28 #include "chrome/browser/extensions/menu_manager.h" |
| 29 #endif | 29 #endif |
| 30 | 30 |
| 31 #if defined(OS_CHROMEOS) |
| 32 class ArcAppMenuObserver; |
| 33 #endif |
| 31 class PrintPreviewContextMenuObserver; | 34 class PrintPreviewContextMenuObserver; |
| 32 class Profile; | 35 class Profile; |
| 33 class SpellingMenuObserver; | 36 class SpellingMenuObserver; |
| 34 class SpellingOptionsSubMenuObserver; | 37 class SpellingOptionsSubMenuObserver; |
| 35 | 38 |
| 36 namespace content { | 39 namespace content { |
| 37 class RenderFrameHost; | 40 class RenderFrameHost; |
| 38 class WebContents; | 41 class WebContents; |
| 39 } | 42 } |
| 40 | 43 |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 void NotifyMenuShown() override; | 113 void NotifyMenuShown() override; |
| 111 void NotifyURLOpened(const GURL& url, | 114 void NotifyURLOpened(const GURL& url, |
| 112 content::WebContents* new_contents) override; | 115 content::WebContents* new_contents) override; |
| 113 | 116 |
| 114 // Gets the extension (if any) associated with the WebContents that we're in. | 117 // Gets the extension (if any) associated with the WebContents that we're in. |
| 115 const extensions::Extension* GetExtension() const; | 118 const extensions::Extension* GetExtension() const; |
| 116 | 119 |
| 117 void AppendDeveloperItems(); | 120 void AppendDeveloperItems(); |
| 118 void AppendDevtoolsForUnpackedExtensions(); | 121 void AppendDevtoolsForUnpackedExtensions(); |
| 119 void AppendLinkItems(); | 122 void AppendLinkItems(); |
| 123 #if defined(OS_CHROMEOS) |
| 124 void AppendArcLinkItems(); |
| 125 #endif |
| 120 void AppendImageItems(); | 126 void AppendImageItems(); |
| 121 void AppendAudioItems(); | 127 void AppendAudioItems(); |
| 122 void AppendCanvasItems(); | 128 void AppendCanvasItems(); |
| 123 void AppendVideoItems(); | 129 void AppendVideoItems(); |
| 124 void AppendMediaItems(); | 130 void AppendMediaItems(); |
| 125 void AppendPluginItems(); | 131 void AppendPluginItems(); |
| 126 void AppendPageItems(); | 132 void AppendPageItems(); |
| 127 void AppendCopyItem(); | 133 void AppendCopyItem(); |
| 128 void AppendPrintItem(); | 134 void AppendPrintItem(); |
| 129 void AppendMediaRouterItem(); | 135 void AppendMediaRouterItem(); |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 // An observer that handles spelling suggestions, "Add to dictionary", and | 186 // An observer that handles spelling suggestions, "Add to dictionary", and |
| 181 // "Ask Google for suggestions" items. | 187 // "Ask Google for suggestions" items. |
| 182 scoped_ptr<SpellingMenuObserver> spelling_suggestions_menu_observer_; | 188 scoped_ptr<SpellingMenuObserver> spelling_suggestions_menu_observer_; |
| 183 | 189 |
| 184 #if !defined(OS_MACOSX) | 190 #if !defined(OS_MACOSX) |
| 185 // An observer that handles the submenu for showing spelling options. This | 191 // An observer that handles the submenu for showing spelling options. This |
| 186 // submenu lets users select the spelling language, for example. | 192 // submenu lets users select the spelling language, for example. |
| 187 scoped_ptr<SpellingOptionsSubMenuObserver> spelling_options_submenu_observer_; | 193 scoped_ptr<SpellingOptionsSubMenuObserver> spelling_options_submenu_observer_; |
| 188 #endif | 194 #endif |
| 189 | 195 |
| 196 #if defined(OS_CHROMEOS) |
| 197 // An observer that handles ARC app menu items. |
| 198 scoped_ptr<ArcAppMenuObserver> arc_app_menu_observer_; |
| 199 #endif |
| 200 |
| 190 #if defined(ENABLE_PRINT_PREVIEW) | 201 #if defined(ENABLE_PRINT_PREVIEW) |
| 191 // An observer that disables menu items when print preview is active. | 202 // An observer that disables menu items when print preview is active. |
| 192 scoped_ptr<PrintPreviewContextMenuObserver> print_preview_menu_observer_; | 203 scoped_ptr<PrintPreviewContextMenuObserver> print_preview_menu_observer_; |
| 193 #endif | 204 #endif |
| 194 | 205 |
| 195 // In the case of a MimeHandlerView this will point to the WebContents that | 206 // In the case of a MimeHandlerView this will point to the WebContents that |
| 196 // embeds the MimeHandlerViewGuest. Otherwise this will be the same as | 207 // embeds the MimeHandlerViewGuest. Otherwise this will be the same as |
| 197 // |source_web_contents_|. | 208 // |source_web_contents_|. |
| 198 content::WebContents* const embedder_web_contents_; | 209 content::WebContents* const embedder_web_contents_; |
| 199 | 210 |
| 200 DISALLOW_COPY_AND_ASSIGN(RenderViewContextMenu); | 211 DISALLOW_COPY_AND_ASSIGN(RenderViewContextMenu); |
| 201 }; | 212 }; |
| 202 | 213 |
| 203 #endif // CHROME_BROWSER_RENDERER_CONTEXT_MENU_RENDER_VIEW_CONTEXT_MENU_H_ | 214 #endif // CHROME_BROWSER_RENDERER_CONTEXT_MENU_RENDER_VIEW_CONTEXT_MENU_H_ |
| OLD | NEW |