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

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: Rebased. 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 50cecfb192add9af502b58beb036dd2876aceece..c86e3588ee18b6567042fc0ffe3fb51974cda4b1 100644
--- a/chrome/browser/ui/views/location_bar/location_icon_view.cc
+++ b/chrome/browser/ui/views/location_bar/location_icon_view.cc
@@ -58,7 +58,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