| 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_WS_CONNECTION_MANAGER_DELEGATE_H_ | 5 #ifndef COMPONENTS_MUS_WS_CONNECTION_MANAGER_DELEGATE_H_ |
| 6 #define COMPONENTS_MUS_WS_CONNECTION_MANAGER_DELEGATE_H_ | 6 #define COMPONENTS_MUS_WS_CONNECTION_MANAGER_DELEGATE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "components/mus/public/cpp/types.h" | 10 #include "components/mus/public/cpp/types.h" |
| 11 #include "components/mus/public/interfaces/window_tree.mojom.h" | 11 #include "components/mus/public/interfaces/window_tree.mojom.h" |
| 12 #include "third_party/mojo/src/mojo/public/cpp/bindings/interface_request.h" | 12 #include "mojo/public/cpp/bindings/interface_request.h" |
| 13 | 13 |
| 14 namespace mus { | 14 namespace mus { |
| 15 | 15 |
| 16 namespace ws { | 16 namespace ws { |
| 17 | 17 |
| 18 class ClientConnection; | 18 class ClientConnection; |
| 19 class ConnectionManager; | 19 class ConnectionManager; |
| 20 struct WindowId; | 20 struct WindowId; |
| 21 | 21 |
| 22 class ConnectionManagerDelegate { | 22 class ConnectionManagerDelegate { |
| (...skipping 12 matching lines...) Expand all Loading... |
| 35 | 35 |
| 36 protected: | 36 protected: |
| 37 virtual ~ConnectionManagerDelegate() {} | 37 virtual ~ConnectionManagerDelegate() {} |
| 38 }; | 38 }; |
| 39 | 39 |
| 40 } // namespace ws | 40 } // namespace ws |
| 41 | 41 |
| 42 } // namespace mus | 42 } // namespace mus |
| 43 | 43 |
| 44 #endif // COMPONENTS_MUS_WS_CONNECTION_MANAGER_DELEGATE_H_ | 44 #endif // COMPONENTS_MUS_WS_CONNECTION_MANAGER_DELEGATE_H_ |
| OLD | NEW |