| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 UI_VIEWS_MUS_SCREEN_MUS_H_ | 5 #ifndef UI_VIEWS_MUS_SCREEN_MUS_H_ |
| 6 #define UI_VIEWS_MUS_SCREEN_MUS_H_ | 6 #define UI_VIEWS_MUS_SCREEN_MUS_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/observer_list.h" | 10 #include "base/observer_list.h" |
| 11 #include "base/run_loop.h" | 11 #include "base/run_loop.h" |
| 12 #include "components/mus/public/interfaces/display.mojom.h" | |
| 13 #include "mojo/public/cpp/bindings/binding.h" | 12 #include "mojo/public/cpp/bindings/binding.h" |
| 13 #include "services/ui/public/interfaces/display.mojom.h" |
| 14 #include "ui/display/display.h" | 14 #include "ui/display/display.h" |
| 15 #include "ui/display/screen.h" | 15 #include "ui/display/screen.h" |
| 16 #include "ui/views/mus/display_list.h" | 16 #include "ui/views/mus/display_list.h" |
| 17 #include "ui/views/mus/mus_export.h" | 17 #include "ui/views/mus/mus_export.h" |
| 18 | 18 |
| 19 namespace shell { | 19 namespace shell { |
| 20 class Connector; | 20 class Connector; |
| 21 } | 21 } |
| 22 | 22 |
| 23 namespace views { | 23 namespace views { |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 mojo::Binding<mus::mojom::DisplayManagerObserver> | 68 mojo::Binding<mus::mojom::DisplayManagerObserver> |
| 69 display_manager_observer_binding_; | 69 display_manager_observer_binding_; |
| 70 DisplayList display_list_; | 70 DisplayList display_list_; |
| 71 | 71 |
| 72 DISALLOW_COPY_AND_ASSIGN(ScreenMus); | 72 DISALLOW_COPY_AND_ASSIGN(ScreenMus); |
| 73 }; | 73 }; |
| 74 | 74 |
| 75 } // namespace views | 75 } // namespace views |
| 76 | 76 |
| 77 #endif // UI_VIEWS_MUS_SCREEN_MUS_H_ | 77 #endif // UI_VIEWS_MUS_SCREEN_MUS_H_ |
| OLD | NEW |