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

Unified Diff: components/mus/mus_app.cc

Issue 1554783002: Removes WindowTreeImpl::creator_id_ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix compile Created 5 years 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 | « components/mus/mus_app.h ('k') | components/mus/ws/connection_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/mus/mus_app.cc
diff --git a/components/mus/mus_app.cc b/components/mus/mus_app.cc
index ff44dbc18e874a08a5ea91f41319ecb53401dbe2..d319aa6d3bd4c17e08faae6abfc0aa4f8e4c1cdd 100644
--- a/components/mus/mus_app.cc
+++ b/components/mus/mus_app.cc
@@ -98,12 +98,11 @@ ws::ClientConnection*
MandolineUIServicesApp::CreateClientConnectionForEmbedAtWindow(
ws::ConnectionManager* connection_manager,
mojo::InterfaceRequest<mojom::WindowTree> tree_request,
- ConnectionSpecificId creator_id,
const ws::WindowId& root_id,
uint32_t policy_bitmask,
mojom::WindowTreeClientPtr client) {
- scoped_ptr<ws::WindowTreeImpl> service(new ws::WindowTreeImpl(
- connection_manager, creator_id, root_id, policy_bitmask));
+ scoped_ptr<ws::WindowTreeImpl> service(
+ new ws::WindowTreeImpl(connection_manager, root_id, policy_bitmask));
return new ws::DefaultClientConnection(std::move(service), connection_manager,
std::move(tree_request),
std::move(client));
« no previous file with comments | « components/mus/mus_app.h ('k') | components/mus/ws/connection_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698