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

Unified Diff: views/view.h

Issue 2817022: Small tweaks to improve toolbar keyboard accessibility: Put focus rects... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 6 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: views/view.h
===================================================================
--- views/view.h (revision 50343)
+++ views/view.h (working copy)
@@ -608,17 +608,6 @@
// re-used, otherwise a new instance will be created.
ViewAccessibilityWrapper* GetViewAccessibilityWrapper();
- // Accessor used to determine if a child view (leaf) has accessibility focus.
- // Returns NULL if there are no children, or if none of the children has
- // accessibility focus.
- virtual View* GetAccFocusedChildView() { return NULL; }
-
- // Try to give accessibility focus to a given child view. Returns true on
- // success. Returns false if this view isn't already focused, if it doesn't
- // support accessibility focus for children, or if the given view isn't a
- // valid child view that can receive accessibility focus.
- virtual bool SetAccFocusedChildView(View* child_view) { return false; }
-
// Utility functions
// Note that the utility coordinate conversions functions always operate on

Powered by Google App Engine
This is Rietveld 408576698