OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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_UI_VIEWS_FRAME_SYSTEM_MENU_MODEL_BUILDER_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_SYSTEM_MENU_MODEL_BUILDER_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_FRAME_SYSTEM_MENU_MODEL_BUILDER_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_FRAME_SYSTEM_MENU_MODEL_BUILDER_H_ |
7 | 7 |
| 8 #include "base/macros.h" |
8 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
9 #include "chrome/browser/ui/views/frame/system_menu_model_delegate.h" | 10 #include "chrome/browser/ui/views/frame/system_menu_model_delegate.h" |
10 | 11 |
11 class Browser; | 12 class Browser; |
12 class EncodingMenuModel; | 13 class EncodingMenuModel; |
13 class ZoomMenuModel; | 14 class ZoomMenuModel; |
14 | 15 |
15 namespace ui { | 16 namespace ui { |
16 class AcceleratorProvider; | 17 class AcceleratorProvider; |
17 class MenuModel; | 18 class MenuModel; |
(...skipping 29 matching lines...) Expand all Loading... |
47 | 48 |
48 SystemMenuModelDelegate menu_delegate_; | 49 SystemMenuModelDelegate menu_delegate_; |
49 scoped_ptr<ui::MenuModel> menu_model_; | 50 scoped_ptr<ui::MenuModel> menu_model_; |
50 scoped_ptr<ZoomMenuModel> zoom_menu_contents_; | 51 scoped_ptr<ZoomMenuModel> zoom_menu_contents_; |
51 scoped_ptr<EncodingMenuModel> encoding_menu_contents_; | 52 scoped_ptr<EncodingMenuModel> encoding_menu_contents_; |
52 | 53 |
53 DISALLOW_COPY_AND_ASSIGN(SystemMenuModelBuilder); | 54 DISALLOW_COPY_AND_ASSIGN(SystemMenuModelBuilder); |
54 }; | 55 }; |
55 | 56 |
56 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_SYSTEM_MENU_MODEL_BUILDER_H_ | 57 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_SYSTEM_MENU_MODEL_BUILDER_H_ |
OLD | NEW |