| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 ASH_MUS_WINDOW_MANAGER_H_ | 5 #ifndef ASH_MUS_WINDOW_MANAGER_H_ |
| 6 #define ASH_MUS_WINDOW_MANAGER_H_ | 6 #define ASH_MUS_WINDOW_MANAGER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| 11 #include <set> | 11 #include <set> |
| 12 | 12 |
| 13 #include "base/macros.h" | 13 #include "base/macros.h" |
| 14 #include "base/observer_list.h" | 14 #include "base/observer_list.h" |
| 15 #include "components/mus/common/types.h" | 15 #include "services/ui/common/types.h" |
| 16 #include "components/mus/public/cpp/window_manager_delegate.h" | 16 #include "services/ui/public/cpp/window_manager_delegate.h" |
| 17 #include "components/mus/public/cpp/window_observer.h" | 17 #include "services/ui/public/cpp/window_observer.h" |
| 18 #include "components/mus/public/cpp/window_tree_client_delegate.h" | 18 #include "services/ui/public/cpp/window_tree_client_delegate.h" |
| 19 #include "components/mus/public/interfaces/window_manager.mojom.h" | 19 #include "services/ui/public/interfaces/window_manager.mojom.h" |
| 20 | 20 |
| 21 namespace display { | 21 namespace display { |
| 22 class Display; | 22 class Display; |
| 23 class Screen; | 23 class Screen; |
| 24 } | 24 } |
| 25 | 25 |
| 26 namespace shell { | 26 namespace shell { |
| 27 class Connector; | 27 class Connector; |
| 28 } | 28 } |
| 29 | 29 |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 | 121 |
| 122 std::unique_ptr<WmLookupMus> lookup_; | 122 std::unique_ptr<WmLookupMus> lookup_; |
| 123 | 123 |
| 124 DISALLOW_COPY_AND_ASSIGN(WindowManager); | 124 DISALLOW_COPY_AND_ASSIGN(WindowManager); |
| 125 }; | 125 }; |
| 126 | 126 |
| 127 } // namespace mus | 127 } // namespace mus |
| 128 } // namespace ash | 128 } // namespace ash |
| 129 | 129 |
| 130 #endif // ASH_MUS_WINDOW_MANAGER_H_ | 130 #endif // ASH_MUS_WINDOW_MANAGER_H_ |
| OLD | NEW |