OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 UI_VIEWS_CONTROLS_MENU_MENU_2_H_ | 5 #ifndef UI_VIEWS_CONTROLS_MENU_MENU_2_H_ |
6 #define UI_VIEWS_CONTROLS_MENU_MENU_2_H_ | 6 #define UI_VIEWS_CONTROLS_MENU_MENU_2_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 #include "ui/gfx/native_widget_types.h" | 10 #include "ui/gfx/native_widget_types.h" |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 | 87 |
88 // The object that actually implements the menu. | 88 // The object that actually implements the menu. |
89 scoped_ptr<MenuWrapper> wrapper_; | 89 scoped_ptr<MenuWrapper> wrapper_; |
90 | 90 |
91 DISALLOW_COPY_AND_ASSIGN(Menu2); | 91 DISALLOW_COPY_AND_ASSIGN(Menu2); |
92 }; | 92 }; |
93 | 93 |
94 } // namespace views | 94 } // namespace views |
95 | 95 |
96 #endif // UI_VIEWS_CONTROLS_MENU_MENU_2_H_ | 96 #endif // UI_VIEWS_CONTROLS_MENU_MENU_2_H_ |
OLD | NEW |