diff options
author | mohsen@chromium.org <mohsen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-16 14:07:19 +0000 |
---|---|---|
committer | mohsen@chromium.org <mohsen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-16 14:07:19 +0000 |
commit | 505df7b9b280d3acfa9fa66094d6a5906fa6e743 (patch) | |
tree | e0f3b4ca8e03699e7e388130a12d4aa2b0691e88 /ash/shell | |
parent | 71de10ee5b06eacf9ee72db449c15967878054b6 (diff) | |
download | chromium_src-505df7b9b280d3acfa9fa66094d6a5906fa6e743.zip chromium_src-505df7b9b280d3acfa9fa66094d6a5906fa6e743.tar.gz chromium_src-505df7b9b280d3acfa9fa66094d6a5906fa6e743.tar.bz2 |
Rename View::set_focusable and View::set_accessibility_focusable
These functions are renamed to SetFocusable and
SetAccessibilityFocusable, respectively, as a first step to add some
functionality to them later. Later the view should give up focus if it
has become unfocusable.
BUG=323956
Review URL: https://codereview.chromium.org/103493005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@240888 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/shell')
-rw-r--r-- | ash/shell/lock_view.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ash/shell/lock_view.cc b/ash/shell/lock_view.cc index aee0133..7a95ea439 100644 --- a/ash/shell/lock_view.cc +++ b/ash/shell/lock_view.cc @@ -28,7 +28,7 @@ class LockView : public views::WidgetDelegateView, : unlock_button_(new views::LabelButton(this, ASCIIToUTF16("Unlock"))) { unlock_button_->SetStyle(views::Button::STYLE_NATIVE_TEXTBUTTON); AddChildView(unlock_button_); - unlock_button_->set_focusable(true); + unlock_button_->SetFocusable(true); } virtual ~LockView() {} |