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

Unified Diff: chrome/browser/ui/views/autofill/autofill_dialog_views.cc

Issue 103493005: Rename View::set_focusable and View::set_accessibility_focusable (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added a few missing files Created 7 years 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
Index: chrome/browser/ui/views/autofill/autofill_dialog_views.cc
diff --git a/chrome/browser/ui/views/autofill/autofill_dialog_views.cc b/chrome/browser/ui/views/autofill/autofill_dialog_views.cc
index 514519a47eb3ad5f4966cf239a05156ce04e6da5..928603ee06d44e2fc0af5844418b42d70de526f9 100644
--- a/chrome/browser/ui/views/autofill/autofill_dialog_views.cc
+++ b/chrome/browser/ui/views/autofill/autofill_dialog_views.cc
@@ -479,7 +479,7 @@ AutofillDialogViews::AccountChooser::AccountChooser(
gfx::Insets insets = GetInsets();
menu_button_->SetFocusPainter(
views::Painter::CreateDashedFocusPainterWithInsets(insets));
- menu_button_->set_focusable(true);
+ menu_button_->SetFocusable(true);
AddChildView(menu_button_);
link_->set_listener(this);
@@ -945,7 +945,7 @@ AutofillDialogViews::SuggestedButton::SuggestedButton(
-kFocusBorderWidth, -kFocusBorderWidth);
SetFocusPainter(
views::Painter::CreateDashedFocusPainterWithInsets(insets));
- set_focusable(true);
+ SetFocusable(true);
}
AutofillDialogViews::SuggestedButton::~SuggestedButton() {}

Powered by Google App Engine
This is Rietveld 408576698