| 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_SEPARATOR_H_ | 5 #ifndef UI_VIEWS_CONTROLS_MENU_MENU_SEPARATOR_H_ |
| 6 #define UI_VIEWS_CONTROLS_MENU_MENU_SEPARATOR_H_ | 6 #define UI_VIEWS_CONTROLS_MENU_MENU_SEPARATOR_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "ui/views/view.h" | 9 #include "ui/views/view.h" |
| 10 | 10 |
| 11 namespace views { | 11 namespace views { |
| 12 | 12 |
| 13 class MenuSeparator : public View { | 13 class MenuSeparator : public View { |
| 14 public: | 14 public: |
| 15 MenuSeparator() {} | 15 MenuSeparator(const string16& type) : type_(type) {} |
| 16 | 16 |
| 17 // View overrides. | 17 // View overrides. |
| 18 virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE; | 18 virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE; |
| 19 virtual gfx::Size GetPreferredSize() OVERRIDE; | 19 virtual gfx::Size GetPreferredSize() OVERRIDE; |
| 20 | 20 |
| 21 private: | 21 private: |
| 22 // The type of the separator. |
| 23 string16 type_; |
| 24 |
| 22 DISALLOW_COPY_AND_ASSIGN(MenuSeparator); | 25 DISALLOW_COPY_AND_ASSIGN(MenuSeparator); |
| 23 }; | 26 }; |
| 24 | 27 |
| 25 } // namespace views | 28 } // namespace views |
| 26 | 29 |
| 27 #endif // UI_VIEWS_CONTROLS_MENU_MENU_SEPARATOR_H_ | 30 #endif // UI_VIEWS_CONTROLS_MENU_MENU_SEPARATOR_H_ |
| OLD | NEW |