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

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: 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/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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698