Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(116)

Side by Side Diff: ui/views/controls/menu/menu_separator.h

Issue 10837317: Setting the touch wrench menu as default menu for ChromeOS (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed review Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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/base/models/separator_types.h"
9 #include "ui/views/view.h" 10 #include "ui/views/view.h"
10 11
11 namespace views { 12 namespace views {
12 13
13 class MenuSeparator : public View { 14 class MenuSeparator : public View {
14 public: 15 public:
15 MenuSeparator() {} 16 MenuSeparator(ui::MenuSeparatorStyle type) : type_(type) {}
sky 2012/08/21 03:03:25 explicit
Mr4D (OOO till 08-26) 2012/08/21 15:37:16 Done.
16 17
17 // View overrides. 18 // View overrides.
18 virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE; 19 virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE;
19 virtual gfx::Size GetPreferredSize() OVERRIDE; 20 virtual gfx::Size GetPreferredSize() OVERRIDE;
20 21
21 private: 22 private:
23 // The type of the separator.
24 ui::MenuSeparatorStyle type_;
sky 2012/08/21 03:03:25 const
Mr4D (OOO till 08-26) 2012/08/21 15:37:16 Done.
25
22 DISALLOW_COPY_AND_ASSIGN(MenuSeparator); 26 DISALLOW_COPY_AND_ASSIGN(MenuSeparator);
23 }; 27 };
24 28
25 } // namespace views 29 } // namespace views
26 30
27 #endif // UI_VIEWS_CONTROLS_MENU_MENU_SEPARATOR_H_ 31 #endif // UI_VIEWS_CONTROLS_MENU_MENU_SEPARATOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698