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

Unified Diff: views/controls/menu/submenu_view.h

Issue 2832106: Add view class names to some classes used in the Wrench menu. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « views/controls/menu/menu_item_view.cc ('k') | views/controls/menu/submenu_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: views/controls/menu/submenu_view.h
===================================================================
--- views/controls/menu/submenu_view.h (revision 54553)
+++ views/controls/menu/submenu_view.h (working copy)
@@ -6,6 +6,8 @@
#define VIEWS_CONTROLS_MENU_SUBMENU_VIEW_H_
#pragma once
+#include <string>
+
#include "views/controls/menu/menu_delegate.h"
#include "views/view.h"
@@ -32,6 +34,9 @@
// are provided that allow the user to see all the menu items.
class SubmenuView : public View {
public:
+ // The submenu's class name.
+ static const char kViewClassName[];
+
// Creates a SubmenuView for the specified menu item.
explicit SubmenuView(MenuItemView* parent);
~SubmenuView();
@@ -133,6 +138,9 @@
// Padding around the edges of the submenu.
static const int kSubmenuBorderSize;
+ protected:
+ virtual std::string GetClassName() const;
+
private:
// Paints the drop indicator. This is only invoked if item is non-NULL and
// position is not DROP_NONE.
« no previous file with comments | « views/controls/menu/menu_item_view.cc ('k') | views/controls/menu/submenu_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698