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 /chrome/browser/chromeos/options | |
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 'chrome/browser/chromeos/options')
-rw-r--r-- | chrome/browser/chromeos/options/wifi_config_view.cc | 2 | ||||
-rw-r--r-- | chrome/browser/chromeos/options/wimax_config_view.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/chromeos/options/wifi_config_view.cc b/chrome/browser/chromeos/options/wifi_config_view.cc index a27cab7..8bd223d 100644 --- a/chrome/browser/chromeos/options/wifi_config_view.cc +++ b/chrome/browser/chromeos/options/wifi_config_view.cc @@ -1084,7 +1084,7 @@ void WifiConfigView::Init(bool show_8021x) { } else { // Password visible button. passphrase_visible_button_ = new views::ToggleImageButton(this); - passphrase_visible_button_->set_focusable(true); + passphrase_visible_button_->SetFocusable(true); passphrase_visible_button_->SetTooltipText( l10n_util::GetStringUTF16( IDS_OPTIONS_SETTINGS_INTERNET_OPTIONS_PASSPHRASE_SHOW)); diff --git a/chrome/browser/chromeos/options/wimax_config_view.cc b/chrome/browser/chromeos/options/wimax_config_view.cc index 99ff882..6a8e57f 100644 --- a/chrome/browser/chromeos/options/wimax_config_view.cc +++ b/chrome/browser/chromeos/options/wimax_config_view.cc @@ -269,7 +269,7 @@ void WimaxConfigView::Init() { } else { // Password visible button. passphrase_visible_button_ = new views::ToggleImageButton(this); - passphrase_visible_button_->set_focusable(true); + passphrase_visible_button_->SetFocusable(true); passphrase_visible_button_->SetTooltipText( l10n_util::GetStringUTF16( IDS_OPTIONS_SETTINGS_INTERNET_OPTIONS_PASSPHRASE_SHOW)); |