OLD | NEW |
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 Loading... |
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 Loading... |
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_ |
OLD | NEW |