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

Unified Diff: ash/shell.cc

Issue 260883005: Separated alt-tab window cycle from overview mode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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: ash/shell.cc
diff --git a/ash/shell.cc b/ash/shell.cc
index 9f19b1487e0db581ca01e84cf72919b9fce59ff8..f1992b3dc124323e00cb2bca806dd5ed03161de9 100644
--- a/ash/shell.cc
+++ b/ash/shell.cc
@@ -73,6 +73,7 @@
#include "ash/wm/toplevel_window_event_handler.h"
#include "ash/wm/video_detector.h"
#include "ash/wm/window_animations.h"
+#include "ash/wm/window_cycle_controller.h"
#include "ash/wm/window_positioner.h"
#include "ash/wm/window_properties.h"
#include "ash/wm/window_util.h"
@@ -713,6 +714,7 @@ Shell::~Shell() {
shadow_controller_.reset();
resize_shadow_controller_.reset();
+ window_cycle_controller_.reset();
window_selector_controller_.reset();
mru_window_tracker_.reset();
@@ -946,6 +948,7 @@ void Shell::Init() {
high_contrast_controller_.reset(new HighContrastController);
video_detector_.reset(new VideoDetector);
window_selector_controller_.reset(new WindowSelectorController());
+ window_cycle_controller_.reset(new WindowCycleController());
tooltip_controller_.reset(
new views::corewm::TooltipController(

Powered by Google App Engine
This is Rietveld 408576698