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

Unified Diff: ui/views/view.h

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: ui/views/view.h
diff --git a/ui/views/view.h b/ui/views/view.h
index 9412b29396a7cf4229c9e644f769403e126645b3..dfe0292d19ffe598fbdcf7287b1fefd67f0e6bf1 100644
--- a/ui/views/view.h
+++ b/ui/views/view.h
@@ -1149,6 +1149,11 @@ class VIEWS_EXPORT View : public ui::LayerDelegate,
// if a view can take focus right now.
bool focusable() const { return focusable_; }
+ // Returns last value passed to SetAccessibilityFocusable(). Use
tapted 2016/04/20 06:05:58 (ideally this is unnecessary with something like `
karandeepb 2016/05/03 02:54:13 Removed this.
+ // IsAccessibilityFocusable() to determine if a view can take focus right now
+ // in accessibility mode.
+ bool accessibility_focusable() const { return accessibility_focusable_; }
+
// Override to be notified when focus has changed either to or from this View.
virtual void OnFocus();
virtual void OnBlur();

Powered by Google App Engine
This is Rietveld 408576698