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/ui/views/autofill/autofill_dialog_views_unittest.cc | |
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/ui/views/autofill/autofill_dialog_views_unittest.cc')
-rw-r--r-- | chrome/browser/ui/views/autofill/autofill_dialog_views_unittest.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/ui/views/autofill/autofill_dialog_views_unittest.cc b/chrome/browser/ui/views/autofill/autofill_dialog_views_unittest.cc index e294774..f9c27a8 100644 --- a/chrome/browser/ui/views/autofill/autofill_dialog_views_unittest.cc +++ b/chrome/browser/ui/views/autofill/autofill_dialog_views_unittest.cc @@ -90,11 +90,11 @@ class AutofillDialogViewsTest : public TestWithBrowserView { protected: void SetSectionsFocusable() { - dialog()->GetLoadingShieldForTesting()->set_focusable(true); + dialog()->GetLoadingShieldForTesting()->SetFocusable(true); // The sign in web view is not focusable until a web contents is created. // TODO(dbeam): figure out how to create a web contents on the right thread. - dialog()->GetNotificationAreaForTesting()->set_focusable(true); - dialog()->GetScrollableAreaForTesting()->set_focusable(true); + dialog()->GetNotificationAreaForTesting()->SetFocusable(true); + dialog()->GetScrollableAreaForTesting()->SetFocusable(true); } private: |