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

Unified Diff: ash/mus/bridge/wm_shell_mus.cc

Issue 2330403002: Do not activate system tray bubble by default (Closed)
Patch Set: Do not activate system tray bubble by default Created 4 years, 3 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/mus/bridge/wm_shell_mus.cc
diff --git a/ash/mus/bridge/wm_shell_mus.cc b/ash/mus/bridge/wm_shell_mus.cc
index 7c720a87d6ad8e634e968596c9a8b9bbe164bea0..f1625dda398ac4cdfa5b389dd982d8f07083fc97 100644
--- a/ash/mus/bridge/wm_shell_mus.cc
+++ b/ash/mus/bridge/wm_shell_mus.cc
@@ -7,6 +7,7 @@
#include <utility>
#include "ash/common/accelerators/accelerator_controller.h"
+#include "ash/common/key_event_watcher.h"
#include "ash/common/session/session_state_delegate.h"
#include "ash/common/shell_delegate.h"
#include "ash/common/shell_observer.h"
@@ -364,6 +365,12 @@ WmShellMus::CreateImmersiveFullscreenController() {
return base::MakeUnique<ImmersiveFullscreenController>();
}
+std::unique_ptr<KeyEventWatcher> WmShellMus::CreateKeyEventWatcher() {
+ // crbug.com/
James Cook 2016/09/23 16:32:28 Bug number please.
oshima 2016/09/23 19:19:54 Done.
+ NOTIMPLEMENTED();
+ return std::unique_ptr<KeyEventWatcher>();
+}
+
void WmShellMus::OnOverviewModeStarting() {
FOR_EACH_OBSERVER(ShellObserver, *shell_observers(),
OnOverviewModeStarting());

Powered by Google App Engine
This is Rietveld 408576698