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

Unified Diff: ui/views/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, 7 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: ui/views/view.cc
diff --git a/ui/views/view.cc b/ui/views/view.cc
index 8127f797aebbc81ba1f44621b5a15876f599154e..0e733ad6a898f01863c3eccbda30c5de2bc15237 100644
--- a/ui/views/view.cc
+++ b/ui/views/view.cc
@@ -1226,7 +1226,7 @@ const FocusManager* View::GetFocusManager() const {
void View::RequestFocus() {
FocusManager* focus_manager = GetFocusManager();
- if (focus_manager && IsFocusable())
+ if (focus_manager && IsAccessibilityFocusable())
focus_manager->SetFocusedView(this);
}

Powered by Google App Engine
This is Rietveld 408576698