diff options
author | dmazzoni@chromium.org <dmazzoni@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-21 19:22:58 +0000 |
---|---|---|
committer | dmazzoni@chromium.org <dmazzoni@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-21 19:22:58 +0000 |
commit | b4c158db2d55a600c9e92691fdbe8709d04f84c8 (patch) | |
tree | 0276050c1224a874508b6e017ef12149d5ffd001 /views/controls/button/custom_button.cc | |
parent | eac60f73ccc4dec42784ee6237f73ec4fa69ed7a (diff) | |
download | chromium_src-b4c158db2d55a600c9e92691fdbe8709d04f84c8.zip chromium_src-b4c158db2d55a600c9e92691fdbe8709d04f84c8.tar.gz chromium_src-b4c158db2d55a600c9e92691fdbe8709d04f84c8.tar.bz2 |
Make the Windows location bar send accessibility events to the
accessibility extension API on Windows. This adds a few more
accessibility events to views accessibility while we're at it.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/3999001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@63394 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/controls/button/custom_button.cc')
-rw-r--r-- | views/controls/button/custom_button.cc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/views/controls/button/custom_button.cc b/views/controls/button/custom_button.cc index ebca6ff..7a3eca2 100644 --- a/views/controls/button/custom_button.cc +++ b/views/controls/button/custom_button.cc @@ -13,6 +13,9 @@ namespace views { // How long the hover animation takes if uninterrupted. static const int kHoverFadeDurationMs = 150; +// static +const char CustomButton::kViewClassName[] = "views/CustomButton"; + //////////////////////////////////////////////////////////////////////////////// // CustomButton, public: @@ -103,6 +106,10 @@ bool CustomButton::IsMouseHovered() const { return HitTest(cursor_pos); } +std::string CustomButton::GetClassName() const { + return kViewClassName; +} + //////////////////////////////////////////////////////////////////////////////// // CustomButton, protected: |