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

Side by Side Diff: ash/focus_cycler.cc

Issue 2045793002: Moves MruWindowTracker into common (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mru_window_tracker
Patch Set: not relative Created 4 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 unified diff | Download patch
« no previous file with comments | « ash/common/wm/mru_window_tracker.cc ('k') | ash/shelf/shelf_layout_manager.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/aura/wm_window_aura.h" 7 #include "ash/aura/wm_window_aura.h"
8 #include "ash/common/wm/mru_window_tracker.h"
8 #include "ash/common/wm/window_state.h" 9 #include "ash/common/wm/window_state.h"
9 #include "ash/shell.h" 10 #include "ash/shell.h"
10 #include "ash/wm/mru_window_tracker.h"
11 #include "ash/wm/window_state_aura.h" 11 #include "ash/wm/window_state_aura.h"
12 #include "ash/wm/window_util.h" 12 #include "ash/wm/window_util.h"
13 #include "ui/aura/window.h" 13 #include "ui/aura/window.h"
14 #include "ui/views/accessible_pane_view.h" 14 #include "ui/views/accessible_pane_view.h"
15 #include "ui/views/focus/focus_search.h" 15 #include "ui/views/focus/focus_search.h"
16 #include "ui/views/widget/widget.h" 16 #include "ui/views/widget/widget.h"
17 #include "ui/wm/public/activation_client.h" 17 #include "ui/wm/public/activation_client.h"
18 18
19 namespace ash { 19 namespace ash {
20 20
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 bool FocusCycler::FocusWidget(views::Widget* widget) { 111 bool FocusCycler::FocusWidget(views::Widget* widget) {
112 // Note: It is not necessary to set the focus directly to the pane since that 112 // Note: It is not necessary to set the focus directly to the pane since that
113 // will be taken care of by the widget activation. 113 // will be taken care of by the widget activation.
114 widget_activating_ = widget; 114 widget_activating_ = widget;
115 widget->Activate(); 115 widget->Activate();
116 widget_activating_ = NULL; 116 widget_activating_ = NULL;
117 return widget->IsActive(); 117 return widget->IsActive();
118 } 118 }
119 119
120 } // namespace ash 120 } // namespace ash
OLDNEW
« no previous file with comments | « ash/common/wm/mru_window_tracker.cc ('k') | ash/shelf/shelf_layout_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698