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

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

Issue 2194353002: mash: Migrate ScopedTargetRootWindow to //ash/common (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: similarity 40 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
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 e13fbffd63d95fb9001c6973fbd5ea26556ea3b3..f5f37d782304bb55b6c2a180b052e3626d33d689 100644
--- a/ash/mus/bridge/wm_shell_mus.cc
+++ b/ash/mus/bridge/wm_shell_mus.cc
@@ -9,6 +9,7 @@
#include "ash/common/accelerators/accelerator_controller.h"
#include "ash/common/display/display_info.h"
#include "ash/common/keyboard/keyboard_ui.h"
+#include "ash/common/scoped_root_window_for_new_windows.h"
#include "ash/common/session/session_state_delegate.h"
#include "ash/common/shell_delegate.h"
#include "ash/common/shell_observer.h"
@@ -211,6 +212,12 @@ WmWindow* WmShellMus::GetRootWindowForNewWindows() {
return root_window_controllers_[0]->GetWindow();
}
+std::unique_ptr<ScopedRootWindowForNewWindows>
+WmShellMus::CreateScopedRootWindowForNewWindows(WmWindow* root) {
+ NOTIMPLEMENTED();
+ return nullptr;
+}
+
const DisplayInfo& WmShellMus::GetDisplayInfo(int64_t display_id) const {
NOTIMPLEMENTED();
static DisplayInfo fake_info;

Powered by Google App Engine
This is Rietveld 408576698