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

Side by Side Diff: components/mus/mus_app.h

Issue 1554783002: Removes WindowTreeImpl::creator_id_ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix compile Created 4 years, 11 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 unified diff | Download patch
« no previous file with comments | « no previous file | components/mus/mus_app.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef COMPONENTS_MUS_MUS_APP_H_ 5 #ifndef COMPONENTS_MUS_MUS_APP_H_
6 #define COMPONENTS_MUS_MUS_APP_H_ 6 #define COMPONENTS_MUS_MUS_APP_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <vector> 10 #include <vector>
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 void Initialize(mojo::ApplicationImpl* app) override; 56 void Initialize(mojo::ApplicationImpl* app) override;
57 bool ConfigureIncomingConnection( 57 bool ConfigureIncomingConnection(
58 mojo::ApplicationConnection* connection) override; 58 mojo::ApplicationConnection* connection) override;
59 59
60 // ConnectionManagerDelegate: 60 // ConnectionManagerDelegate:
61 void OnFirstRootConnectionCreated() override; 61 void OnFirstRootConnectionCreated() override;
62 void OnNoMoreRootConnections() override; 62 void OnNoMoreRootConnections() override;
63 ws::ClientConnection* CreateClientConnectionForEmbedAtWindow( 63 ws::ClientConnection* CreateClientConnectionForEmbedAtWindow(
64 ws::ConnectionManager* connection_manager, 64 ws::ConnectionManager* connection_manager,
65 mojo::InterfaceRequest<mojom::WindowTree> tree_request, 65 mojo::InterfaceRequest<mojom::WindowTree> tree_request,
66 ConnectionSpecificId creator_id,
67 const ws::WindowId& root_id, 66 const ws::WindowId& root_id,
68 uint32_t policy_bitmask, 67 uint32_t policy_bitmask,
69 mojom::WindowTreeClientPtr client) override; 68 mojom::WindowTreeClientPtr client) override;
70 69
71 // mojo::InterfaceFactory<mojom::WindowManager> implementation. 70 // mojo::InterfaceFactory<mojom::WindowManager> implementation.
72 void Create(mojo::ApplicationConnection* connection, 71 void Create(mojo::ApplicationConnection* connection,
73 mojo::InterfaceRequest<mojom::WindowManager> request) override; 72 mojo::InterfaceRequest<mojom::WindowManager> request) override;
74 73
75 // mojo::InterfaceFactory<mojom::WindowTreeHostFactory>: 74 // mojo::InterfaceFactory<mojom::WindowTreeHostFactory>:
76 void Create( 75 void Create(
(...skipping 24 matching lines...) Expand all
101 100
102 // Surfaces 101 // Surfaces
103 scoped_refptr<SurfacesState> surfaces_state_; 102 scoped_refptr<SurfacesState> surfaces_state_;
104 103
105 DISALLOW_COPY_AND_ASSIGN(MandolineUIServicesApp); 104 DISALLOW_COPY_AND_ASSIGN(MandolineUIServicesApp);
106 }; 105 };
107 106
108 } // namespace mus 107 } // namespace mus
109 108
110 #endif // COMPONENTS_MUS_MUS_APP_H_ 109 #endif // COMPONENTS_MUS_MUS_APP_H_
OLDNEW
« no previous file with comments | « no previous file | components/mus/mus_app.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698