| 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_MUS_CLIENT_INIT_H_ | 5 #ifndef UI_VIEWS_MUS_MUS_CLIENT_INIT_H_ |
| 6 #define UI_VIEWS_MUS_MUS_CLIENT_INIT_H_ | 6 #define UI_VIEWS_MUS_MUS_CLIENT_INIT_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "ui/aura/mus/window_tree_client_delegate.h" | 11 #include "ui/aura/mus/window_tree_client_delegate.h" |
| 12 #include "ui/base/dragdrop/os_exchange_data_provider_factory.h" | 12 #include "ui/base/dragdrop/os_exchange_data_provider_factory.h" |
| 13 #include "ui/views/mus/mus_export.h" | 13 #include "ui/views/mus/mus_export.h" |
| 14 #include "ui/views/mus/screen_mus_delegate.h" | 14 #include "ui/views/mus/screen_mus_delegate.h" |
| 15 #include "ui/views/widget/widget.h" | 15 #include "ui/views/widget/widget.h" |
| 16 | 16 |
| 17 namespace aura { | 17 namespace aura { |
| 18 class Env; | |
| 19 class GpuService; | 18 class GpuService; |
| 20 class PropertyConverter; | 19 class PropertyConverter; |
| 21 class MusContextFactory; | 20 class MusContextFactory; |
| 22 class Window; | 21 class Window; |
| 23 class WindowTreeClient; | 22 class WindowTreeClient; |
| 24 } | 23 } |
| 25 | 24 |
| 26 namespace base { | 25 namespace base { |
| 27 class SingleThreadTaskRunner; | 26 class SingleThreadTaskRunner; |
| 28 } | 27 } |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 std::unique_ptr<aura::GpuService> gpu_service_; | 122 std::unique_ptr<aura::GpuService> gpu_service_; |
| 124 | 123 |
| 125 std::unique_ptr<aura::MusContextFactory> compositor_context_factory_; | 124 std::unique_ptr<aura::MusContextFactory> compositor_context_factory_; |
| 126 | 125 |
| 127 DISALLOW_COPY_AND_ASSIGN(MusClient); | 126 DISALLOW_COPY_AND_ASSIGN(MusClient); |
| 128 }; | 127 }; |
| 129 | 128 |
| 130 } // namespace views | 129 } // namespace views |
| 131 | 130 |
| 132 #endif // UI_VIEWS_MUS_MUS_CLIENT_INIT_H_ | 131 #endif // UI_VIEWS_MUS_MUS_CLIENT_INIT_H_ |
| OLD | NEW |