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

Unified Diff: chrome/browser/ui/views/location_bar/location_icon_view.cc

Issue 1894383002: MacViews: Implement Full Keyboard Access. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@SetFocusBehavior
Patch Set: Address review comments. Created 4 years, 8 months 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/location_bar/location_icon_view.cc
diff --git a/chrome/browser/ui/views/location_bar/location_icon_view.cc b/chrome/browser/ui/views/location_bar/location_icon_view.cc
index b185b8e9f30c1f9be60317bb2228a53b2393ccb8..4392be08fab55a5831190a1132ecb1d894e8863c 100644
--- a/chrome/browser/ui/views/location_bar/location_icon_view.cc
+++ b/chrome/browser/ui/views/location_bar/location_icon_view.cc
@@ -35,7 +35,13 @@ LocationIconView::LocationIconView(const gfx::FontList& font_list,
suppress_mouse_released_action_(false),
location_bar_(location_bar) {
set_id(VIEW_ID_LOCATION_ICON);
+
+#if defined(OS_MACOSX)
+ SetFocusBehavior(FocusBehavior::ACCESSIBLE_ONLY);
+#else
SetFocusBehavior(FocusBehavior::ALWAYS);
+#endif
+
SetBackground(false);
}

Powered by Google App Engine
This is Rietveld 408576698