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

Unified Diff: views/controls/menu/menu_item_view.cc

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.h ('k') | views/controls/menu/submenu_view.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: views/controls/menu/menu_item_view.cc
===================================================================
--- views/controls/menu/menu_item_view.cc (revision 54553)
+++ views/controls/menu/menu_item_view.cc (working copy)
@@ -65,6 +65,9 @@
// static
int MenuItemView::pref_menu_height_;
+// static
+const char MenuItemView::kViewClassName[] = "views/MenuItemView";
+
MenuItemView::MenuItemView(MenuDelegate* delegate)
: delegate_(delegate),
controller_(NULL),
@@ -400,6 +403,10 @@
Init(parent, command, type, NULL);
}
+std::string MenuItemView::GetClassName() const {
+ return kViewClassName;
+}
+
// Calculates all sizes that we can from the OS.
//
// This is invoked prior to Running a menu.
« no previous file with comments | « views/controls/menu/menu_item_view.h ('k') | views/controls/menu/submenu_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698