| 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_WINDOW_TREE_H_ | 5 #ifndef COMPONENTS_MUS_WS_WINDOW_TREE_H_ |
| 6 #define COMPONENTS_MUS_WS_WINDOW_TREE_H_ | 6 #define COMPONENTS_MUS_WS_WINDOW_TREE_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| 11 #include <memory> | 11 #include <memory> |
| 12 #include <queue> | 12 #include <queue> |
| 13 #include <set> | 13 #include <set> |
| 14 #include <string> | 14 #include <string> |
| 15 #include <vector> | 15 #include <vector> |
| 16 | 16 |
| 17 #include "base/containers/hash_tables.h" | 17 #include "base/containers/hash_tables.h" |
| 18 #include "base/macros.h" | 18 #include "base/macros.h" |
| 19 #include "components/mus/public/interfaces/surface_id.mojom.h" | 19 #include "cc/ipc/surface_id.mojom.h" |
| 20 #include "components/mus/public/interfaces/window_tree.mojom.h" | 20 #include "components/mus/public/interfaces/window_tree.mojom.h" |
| 21 #include "components/mus/ws/access_policy_delegate.h" | 21 #include "components/mus/ws/access_policy_delegate.h" |
| 22 #include "components/mus/ws/ids.h" | 22 #include "components/mus/ws/ids.h" |
| 23 #include "components/mus/ws/user_id.h" | 23 #include "components/mus/ws/user_id.h" |
| 24 #include "components/mus/ws/window_tree_binding.h" | 24 #include "components/mus/ws/window_tree_binding.h" |
| 25 #include "mojo/public/cpp/bindings/associated_binding.h" | 25 #include "mojo/public/cpp/bindings/associated_binding.h" |
| 26 | 26 |
| 27 namespace gfx { | 27 namespace gfx { |
| 28 class Insets; | 28 class Insets; |
| 29 class Rect; | 29 class Rect; |
| (...skipping 441 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 471 std::unique_ptr<WaitingForTopLevelWindowInfo> | 471 std::unique_ptr<WaitingForTopLevelWindowInfo> |
| 472 waiting_for_top_level_window_info_; | 472 waiting_for_top_level_window_info_; |
| 473 | 473 |
| 474 DISALLOW_COPY_AND_ASSIGN(WindowTree); | 474 DISALLOW_COPY_AND_ASSIGN(WindowTree); |
| 475 }; | 475 }; |
| 476 | 476 |
| 477 } // namespace ws | 477 } // namespace ws |
| 478 } // namespace mus | 478 } // namespace mus |
| 479 | 479 |
| 480 #endif // COMPONENTS_MUS_WS_WINDOW_TREE_H_ | 480 #endif // COMPONENTS_MUS_WS_WINDOW_TREE_H_ |
| OLD | NEW |