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

Unified Diff: ash/common/wm_shell.cc

Issue 2075923002: mash: Convert FocusCycler to wm common types and move to //ash/common (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ash/common/wm_shell.h ('k') | ash/common/wm_window.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/common/wm_shell.cc
diff --git a/ash/common/wm_shell.cc b/ash/common/wm_shell.cc
index cffcd3ade478c1a7d2fe80d91eeac2b263fa9471..626eabe0be78c3b5ef60dfb6c7b5a872fa53a441 100644
--- a/ash/common/wm_shell.cc
+++ b/ash/common/wm_shell.cc
@@ -4,6 +4,7 @@
#include "ash/common/wm_shell.h"
+#include "ash/common/focus_cycler.h"
#include "ash/common/system/tray/system_tray_delegate.h"
#include "ash/common/system/tray/wm_system_tray_notifier.h"
#include "base/logging.h"
@@ -23,7 +24,9 @@ WmShell* WmShell::Get() {
return instance_;
}
-WmShell::WmShell() : system_tray_notifier_(new WmSystemTrayNotifier) {}
+WmShell::WmShell()
+ : focus_cycler_(new FocusCycler),
+ system_tray_notifier_(new WmSystemTrayNotifier) {}
WmShell::~WmShell() {}
« no previous file with comments | « ash/common/wm_shell.h ('k') | ash/common/wm_window.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698