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_LIB_WINDOW_TREE_CLIENT_IMPL_H_ | 5 #ifndef COMPONENTS_MUS_PUBLIC_CPP_LIB_WINDOW_TREE_CLIENT_IMPL_H_ |
6 #define COMPONENTS_MUS_PUBLIC_CPP_LIB_WINDOW_TREE_CLIENT_IMPL_H_ | 6 #define COMPONENTS_MUS_PUBLIC_CPP_LIB_WINDOW_TREE_CLIENT_IMPL_H_ |
7 | 7 |
8 #include "base/containers/scoped_ptr_map.h" | 8 #include "base/containers/scoped_ptr_map.h" |
9 #include "components/mus/public/cpp/types.h" | 9 #include "components/mus/public/cpp/types.h" |
10 #include "components/mus/public/cpp/window.h" | 10 #include "components/mus/public/cpp/window.h" |
11 #include "components/mus/public/cpp/window_tree_connection.h" | 11 #include "components/mus/public/cpp/window_tree_connection.h" |
12 #include "components/mus/public/interfaces/window_tree.mojom.h" | 12 #include "components/mus/public/interfaces/window_tree.mojom.h" |
13 #include "third_party/mojo/src/mojo/public/cpp/bindings/strong_binding.h" | 13 #include "mojo/public/cpp/bindings/strong_binding.h" |
14 | 14 |
15 namespace gfx { | 15 namespace gfx { |
16 class Insets; | 16 class Insets; |
17 class Size; | 17 class Size; |
18 } | 18 } |
19 | 19 |
20 namespace mus { | 20 namespace mus { |
21 class InFlightChange; | 21 class InFlightChange; |
22 class WindowTreeClientImplPrivate; | 22 class WindowTreeClientImplPrivate; |
23 class WindowTreeConnection; | 23 class WindowTreeConnection; |
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
215 bool is_embed_root_; | 215 bool is_embed_root_; |
216 | 216 |
217 bool in_destructor_; | 217 bool in_destructor_; |
218 | 218 |
219 MOJO_DISALLOW_COPY_AND_ASSIGN(WindowTreeClientImpl); | 219 MOJO_DISALLOW_COPY_AND_ASSIGN(WindowTreeClientImpl); |
220 }; | 220 }; |
221 | 221 |
222 } // namespace mus | 222 } // namespace mus |
223 | 223 |
224 #endif // COMPONENTS_MUS_PUBLIC_CPP_LIB_WINDOW_TREE_CLIENT_IMPL_H_ | 224 #endif // COMPONENTS_MUS_PUBLIC_CPP_LIB_WINDOW_TREE_CLIENT_IMPL_H_ |
OLD | NEW |