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_PUBLIC_CPP_WINDOW_TREE_DELEGATE_H_ | 5 #ifndef COMPONENTS_MUS_PUBLIC_CPP_WINDOW_TREE_DELEGATE_H_ |
6 #define COMPONENTS_MUS_PUBLIC_CPP_WINDOW_TREE_DELEGATE_H_ | 6 #define COMPONENTS_MUS_PUBLIC_CPP_WINDOW_TREE_DELEGATE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "components/mus/public/interfaces/window_tree.mojom.h" | 10 #include "components/mus/public/interfaces/window_tree.mojom.h" |
11 #include "mojo/services/network/public/interfaces/url_loader.mojom.h" | |
12 #include "mojo/shell/public/interfaces/interface_provider.mojom.h" | 11 #include "mojo/shell/public/interfaces/interface_provider.mojom.h" |
13 | 12 |
14 namespace mus { | 13 namespace mus { |
15 | 14 |
16 class Window; | 15 class Window; |
17 class WindowTreeConnection; | 16 class WindowTreeConnection; |
18 | 17 |
19 // Interface implemented by an application using the window manager. | 18 // Interface implemented by an application using the window manager. |
20 // | 19 // |
21 // WindowTreeConnection is deleted by any of the following: | 20 // WindowTreeConnection is deleted by any of the following: |
(...skipping 26 matching lines...) Expand all Loading... |
48 // have been destroyed. |connection| is no longer valid after this call. | 47 // have been destroyed. |connection| is no longer valid after this call. |
49 virtual void OnConnectionLost(WindowTreeConnection* connection) = 0; | 48 virtual void OnConnectionLost(WindowTreeConnection* connection) = 0; |
50 | 49 |
51 protected: | 50 protected: |
52 virtual ~WindowTreeDelegate() {} | 51 virtual ~WindowTreeDelegate() {} |
53 }; | 52 }; |
54 | 53 |
55 } // namespace mus | 54 } // namespace mus |
56 | 55 |
57 #endif // COMPONENTS_MUS_PUBLIC_CPP_WINDOW_TREE_DELEGATE_H_ | 56 #endif // COMPONENTS_MUS_PUBLIC_CPP_WINDOW_TREE_DELEGATE_H_ |
OLD | NEW |