OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "ash/focus_cycler.h" | 5 #include "ash/focus_cycler.h" |
6 | 6 |
| 7 #include "ash/common/wm/window_state.h" |
7 #include "ash/shell.h" | 8 #include "ash/shell.h" |
8 #include "ash/wm/common/window_state.h" | |
9 #include "ash/wm/mru_window_tracker.h" | 9 #include "ash/wm/mru_window_tracker.h" |
10 #include "ash/wm/window_state_aura.h" | 10 #include "ash/wm/window_state_aura.h" |
11 #include "ash/wm/window_util.h" | 11 #include "ash/wm/window_util.h" |
12 #include "ui/aura/window.h" | 12 #include "ui/aura/window.h" |
13 #include "ui/views/accessible_pane_view.h" | 13 #include "ui/views/accessible_pane_view.h" |
14 #include "ui/views/focus/focus_search.h" | 14 #include "ui/views/focus/focus_search.h" |
15 #include "ui/views/widget/widget.h" | 15 #include "ui/views/widget/widget.h" |
16 #include "ui/wm/public/activation_client.h" | 16 #include "ui/wm/public/activation_client.h" |
17 | 17 |
18 namespace ash { | 18 namespace ash { |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 bool FocusCycler::FocusWidget(views::Widget* widget) { | 109 bool FocusCycler::FocusWidget(views::Widget* widget) { |
110 // Note: It is not necessary to set the focus directly to the pane since that | 110 // Note: It is not necessary to set the focus directly to the pane since that |
111 // will be taken care of by the widget activation. | 111 // will be taken care of by the widget activation. |
112 widget_activating_ = widget; | 112 widget_activating_ = widget; |
113 widget->Activate(); | 113 widget->Activate(); |
114 widget_activating_ = NULL; | 114 widget_activating_ = NULL; |
115 return widget->IsActive(); | 115 return widget->IsActive(); |
116 } | 116 } |
117 | 117 |
118 } // namespace ash | 118 } // namespace ash |
OLD | NEW |