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

Unified Diff: views/controls/button/text_button.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/button/text_button.h ('k') | views/controls/menu/menu_item_view.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: views/controls/button/text_button.cc
===================================================================
--- views/controls/button/text_button.cc (revision 54553)
+++ views/controls/button/text_button.cc (working copy)
@@ -34,6 +34,9 @@
// How long the hover fade animation should last.
static const int kHoverAnimationDurationMs = 170;
+// static
+const char TextButton::kViewClassName[] = "views/TextButton";
+
static int PrefixTypeToCanvasType(TextButton::PrefixType type) {
switch (type) {
case TextButton::PREFIX_HIDE:
@@ -203,6 +206,7 @@
void TextButton::SetText(const std::wstring& text) {
text_ = text;
+ SetAccessibleName(text);
UpdateTextSize();
}
@@ -427,6 +431,10 @@
SchedulePaint();
}
+std::string TextButton::GetClassName() const {
+ return kViewClassName;
+}
+
void TextButton::Paint(gfx::Canvas* canvas) {
Paint(canvas, false);
}
« no previous file with comments | « views/controls/button/text_button.h ('k') | views/controls/menu/menu_item_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698