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

Unified Diff: views/controls/button/text_button.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 | « no previous file | views/controls/button/text_button.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: views/controls/button/text_button.h
===================================================================
--- views/controls/button/text_button.h (revision 54553)
+++ views/controls/button/text_button.h (working copy)
@@ -6,6 +6,8 @@
#define VIEWS_CONTROLS_BUTTON_TEXT_BUTTON_H_
#pragma once
+#include <string>
+
#include "gfx/font.h"
#include "third_party/skia/include/core/SkBitmap.h"
#include "third_party/skia/include/core/SkColor.h"
@@ -72,6 +74,9 @@
////////////////////////////////////////////////////////////////////////////////
class TextButton : public CustomButton {
public:
+ // The menu button's class name.
+ static const char kViewClassName[];
+
// Enumeration of how the prefix ('&') character is processed. The default
// is |PREFIX_NONE|.
enum PrefixType {
@@ -153,6 +158,9 @@
static const SkColor kDisabledColor;
static const SkColor kHoverColor;
+ // Returns views/TextButton.
+ virtual std::string GetClassName() const;
+
protected:
SkBitmap icon() const { return icon_; }
« no previous file with comments | « no previous file | views/controls/button/text_button.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698