Chromium Code Reviews| Index: ui/views/focus/focus_manager.h |
| diff --git a/ui/views/focus/focus_manager.h b/ui/views/focus/focus_manager.h |
| index 6a17fc2bc1a00e8174cc637f787efecdf6ba9d53..03caf741837ddf2744ae42c232e2fcb51f6fbb17 100644 |
| --- a/ui/views/focus/focus_manager.h |
| +++ b/ui/views/focus/focus_manager.h |
| @@ -308,8 +308,14 @@ class VIEWS_EXPORT FocusManager { |
| } |
| private: |
| - // Returns the next focusable view. |
| - View* GetNextFocusableView(View* starting_view, bool reverse, bool dont_loop); |
| + // Returns the next focusable view. Traversal starts at |starting_view|. If |
| + // |starting_view| is NULL traversal starts at |starting_widget|. If both |
| + // |starting_view| and |starting_widget| are NULL, traversal starts at |
|
dmazzoni
2013/09/04 20:40:54
This comment should mention the widget delegate me
sky
2013/09/04 20:50:28
Done.
dmazzoni
2013/09/04 21:07:17
nit: I don't see this in the uploaded changelist
sky
2013/09/04 21:10:03
Woops. Forgot to save the file. Done.
|
| + // |widget_|. |
| + View* GetNextFocusableView(View* starting_view, |
| + Widget* starting_widget, |
| + bool reverse, |
| + bool dont_loop); |
| // Returns the focusable view found in the FocusTraversable specified starting |
| // at the specified view. This traverses down along the FocusTraversable |