OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_BROWSER_RENDERER_CONTEXT_MENU_OPEN_WITH_MENU_FACTORY_H_ |
| 6 #define CHROME_BROWSER_RENDERER_CONTEXT_MENU_OPEN_WITH_MENU_FACTORY_H_ |
| 7 |
| 8 #include "base/compiler_specific.h" |
| 9 #include "base/macros.h" |
| 10 |
| 11 class RenderViewContextMenuObserver; |
| 12 class RenderViewContextMenuProxy; |
| 13 |
| 14 class OpenWithMenuFactory { |
| 15 public: |
| 16 static RenderViewContextMenuObserver* CreateMenu( |
| 17 RenderViewContextMenuProxy* proxy, |
| 18 int menu_id_start, |
| 19 size_t num_menu_items, |
| 20 int sub_menu_id_start, |
| 21 size_t num_sub_menu_items); |
| 22 |
| 23 private: |
| 24 DISALLOW_COPY_AND_ASSIGN(OpenWithMenuFactory); |
| 25 }; |
| 26 |
| 27 #endif // CHROME_BROWSER_RENDERER_CONTEXT_MENU_OPEN_WITH_MENU_FACTORY_H_ |
OLD | NEW |