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_PLATFORM_DISPLAY_H_ | 5 #ifndef SERVICES_UI_WS_PLATFORM_DISPLAY_H_ |
6 #define COMPONENTS_MUS_WS_PLATFORM_DISPLAY_H_ | 6 #define SERVICES_UI_WS_PLATFORM_DISPLAY_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 | 12 |
13 #include "base/macros.h" | 13 #include "base/macros.h" |
14 #include "base/memory/weak_ptr.h" | 14 #include "base/memory/weak_ptr.h" |
15 #include "base/strings/string16.h" | 15 #include "base/strings/string16.h" |
16 #include "base/timer/timer.h" | 16 #include "base/timer/timer.h" |
17 #include "build/build_config.h" | 17 #include "build/build_config.h" |
18 #include "cc/surfaces/surface.h" | 18 #include "cc/surfaces/surface.h" |
19 #include "components/mus/public/interfaces/window_manager.mojom.h" | 19 #include "services/ui/public/interfaces/window_manager.mojom.h" |
20 #include "components/mus/public/interfaces/window_manager_constants.mojom.h" | 20 #include "services/ui/public/interfaces/window_manager_constants.mojom.h" |
21 #include "components/mus/public/interfaces/window_tree.mojom.h" | 21 #include "services/ui/public/interfaces/window_tree.mojom.h" |
22 #include "components/mus/ws/platform_display_delegate.h" | 22 #include "services/ui/ws/platform_display_delegate.h" |
23 #include "components/mus/ws/platform_display_init_params.h" | 23 #include "services/ui/ws/platform_display_init_params.h" |
24 #include "ui/gfx/geometry/rect.h" | 24 #include "ui/gfx/geometry/rect.h" |
25 #include "ui/platform_window/platform_window_delegate.h" | 25 #include "ui/platform_window/platform_window_delegate.h" |
26 | 26 |
27 namespace cc { | 27 namespace cc { |
28 class CompositorFrame; | 28 class CompositorFrame; |
29 class CopyOutputRequest; | 29 class CopyOutputRequest; |
30 class SurfaceIdAllocator; | 30 class SurfaceIdAllocator; |
31 class SurfaceManager; | 31 class SurfaceManager; |
32 } // namespace cc | 32 } // namespace cc |
33 | 33 |
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
185 | 185 |
186 base::WeakPtrFactory<DefaultPlatformDisplay> weak_factory_; | 186 base::WeakPtrFactory<DefaultPlatformDisplay> weak_factory_; |
187 | 187 |
188 DISALLOW_COPY_AND_ASSIGN(DefaultPlatformDisplay); | 188 DISALLOW_COPY_AND_ASSIGN(DefaultPlatformDisplay); |
189 }; | 189 }; |
190 | 190 |
191 } // namespace ws | 191 } // namespace ws |
192 | 192 |
193 } // namespace mus | 193 } // namespace mus |
194 | 194 |
195 #endif // COMPONENTS_MUS_WS_PLATFORM_DISPLAY_H_ | 195 #endif // SERVICES_UI_WS_PLATFORM_DISPLAY_H_ |
OLD | NEW |