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

Unified Diff: services/ui/ws/window_server.cc

Issue 2916823002: Move Mus into chrome's process when running with --mus.
Patch Set: Undo Screen TLS change, don't use Screen::GetScreen() in Mus. Created 3 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
Index: services/ui/ws/window_server.cc
diff --git a/services/ui/ws/window_server.cc b/services/ui/ws/window_server.cc
index f1b282c9b3486c68d3ef50ca7f2b789855611d28..bdbd7a5a0147947f83b532e9910863ed6a9304bc 100644
--- a/services/ui/ws/window_server.cc
+++ b/services/ui/ws/window_server.cc
@@ -111,6 +111,14 @@ void WindowServer::SetGpuHost(std::unique_ptr<GpuHost> gpu_host) {
gpu_host_ = std::move(gpu_host);
}
+scoped_refptr<base::SingleThreadTaskRunner>& WindowServer::GetResourceRunner() {
+ return delegate()->GetResourceRunner();
+}
+
+base::WeakPtr<ui::ImageCursors> WindowServer::GetImageCursorsWeakPtr() {
+ return delegate()->GetImageCursorsWeakPtr();
+}
+
ServerWindow* WindowServer::CreateServerWindow(
const WindowId& id,
const std::map<std::string, std::vector<uint8_t>>& properties) {

Powered by Google App Engine
This is Rietveld 408576698