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

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

Issue 2157393002: Moves WindowCycleList/Controller to ash/common (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Feedback and std::move Created 4 years, 5 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/mus/bridge/wm_window_mus.h ('k') | ash/shell.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/mus/bridge/wm_window_mus.cc
diff --git a/ash/mus/bridge/wm_window_mus.cc b/ash/mus/bridge/wm_window_mus.cc
index 27b48eef548b36217420aab3af8a3ce469ec5895..b0a2a7f22acd07c24ee18098adbb312bf5dcf5f5 100644
--- a/ash/mus/bridge/wm_window_mus.cc
+++ b/ash/mus/bridge/wm_window_mus.cc
@@ -21,6 +21,7 @@
#include "ui/aura/mus/mus_util.h"
#include "ui/base/hit_test.h"
#include "ui/display/display.h"
+#include "ui/views/view.h"
#include "ui/views/widget/widget.h"
#include "ui/views/widget/widget_delegate.h"
@@ -707,6 +708,12 @@ void WmWindowMus::SetDescendantsStayInSameRootWindow(bool value) {
NOTIMPLEMENTED();
}
+std::unique_ptr<views::View> WmWindowMus::CreateViewWithRecreatedLayers() {
+ // TODO: need real implementation, http://crbug.com/629497.
+ std::unique_ptr<views::View> view(new views::View);
+ return view;
+}
+
void WmWindowMus::AddObserver(WmWindowObserver* observer) {
observers_.AddObserver(observer);
}
« no previous file with comments | « ash/mus/bridge/wm_window_mus.h ('k') | ash/shell.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698