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

Unified Diff: components/exo/wm_helper_mus.cc

Issue 2250863003: exo: Run exo in mus+ash (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix review issues Created 4 years, 4 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
« components/exo/wm_helper_mus.h ('K') | « components/exo/wm_helper_mus.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/exo/wm_helper_mus.cc
diff --git a/components/exo/wm_helper_mus.cc b/components/exo/wm_helper_mus.cc
new file mode 100644
index 0000000000000000000000000000000000000000..315a70c4781bca4cb25adf8bb92b36a54a6012f7
--- /dev/null
+++ b/components/exo/wm_helper_mus.cc
@@ -0,0 +1,71 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "components/exo/wm_helper_mus.h"
+
+#include "ash/common/display/display_info.h"
+
+namespace exo {
+
+////////////////////////////////////////////////////////////////////////////////
+// WMHelperMus, public:
+
+WMHelperMus::WMHelperMus() {}
+
+WMHelperMus::~WMHelperMus() {}
+
+////////////////////////////////////////////////////////////////////////////////
+// WMHelperMus, private:
+
+const ash::DisplayInfo WMHelperMus::GetDisplayInfo(int64_t display_id) const {
+ NOTIMPLEMENTED();
+ return ash::DisplayInfo();
+}
+
+aura::Window* WMHelperMus::GetContainer(int container_id) {
+ NOTIMPLEMENTED();
+ return nullptr;
+}
+
+aura::Window* WMHelperMus::GetActiveWindow() const {
+ NOTIMPLEMENTED();
+ return nullptr;
+}
+
+aura::Window* WMHelperMus::GetFocusedWindow() const {
+ NOTIMPLEMENTED();
+ return nullptr;
+}
+
+ui::CursorSetType WMHelperMus::GetCursorSet() const {
+ NOTIMPLEMENTED();
+ return ui::CursorSetType::CURSOR_SET_NORMAL;
+}
+
+void WMHelperMus::AddPreTargetHandler(ui::EventHandler* handler) {
+ NOTIMPLEMENTED();
+}
+
+void WMHelperMus::PrependPreTargetHandler(ui::EventHandler* handler) {
+ NOTIMPLEMENTED();
+}
+
+void WMHelperMus::RemovePreTargetHandler(ui::EventHandler* handler) {
+ NOTIMPLEMENTED();
+}
+
+void WMHelperMus::AddPostTargetHandler(ui::EventHandler* handler) {
+ NOTIMPLEMENTED();
+}
+
+void WMHelperMus::RemovePostTargetHandler(ui::EventHandler* handler) {
+ NOTIMPLEMENTED();
+}
+
+bool WMHelperMus::IsMaximizeModeWindowManagerEnabled() const {
+ NOTIMPLEMENTED();
+ return false;
+}
+
+} // namespace exo
« components/exo/wm_helper_mus.h ('K') | « components/exo/wm_helper_mus.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698