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_ANDROID_DELEGATED_FRAME_HOST_ANDROID_H_ | 5 #ifndef UI_ANDROID_DELEGATED_FRAME_HOST_ANDROID_H_ |
6 #define UI_ANDROID_DELEGATED_FRAME_HOST_ANDROID_H_ | 6 #define UI_ANDROID_DELEGATED_FRAME_HOST_ANDROID_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
10 #include "cc/output/copy_output_request.h" | 10 #include "cc/output/copy_output_request.h" |
11 #include "cc/resources/returned_resource.h" | 11 #include "cc/resources/returned_resource.h" |
12 #include "cc/surfaces/surface_factory.h" | 12 #include "cc/surfaces/surface_factory.h" |
13 #include "cc/surfaces/surface_factory_client.h" | 13 #include "cc/surfaces/surface_factory_client.h" |
14 #include "ui/android/ui_android_export.h" | 14 #include "ui/android/ui_android_export.h" |
15 #include "ui/gfx/selection_bound.h" | 15 #include "ui/gfx/selection_bound.h" |
16 | 16 |
17 namespace cc { | 17 namespace cc { |
18 | 18 |
19 class CompositorFrame; | 19 class CompositorFrame; |
20 class CopyOutputResult; | |
21 class Layer; | 20 class Layer; |
22 class SurfaceId; | |
23 class SurfaceManager; | 21 class SurfaceManager; |
24 class SurfaceLayer; | 22 class SurfaceLayer; |
25 class SurfaceIdAllocator; | 23 class SurfaceIdAllocator; |
26 enum class SurfaceDrawStatus; | 24 enum class SurfaceDrawStatus; |
27 | 25 |
28 } // namespace cc | 26 } // namespace cc |
29 | 27 |
30 namespace ui { | 28 namespace ui { |
31 class ViewAndroid; | 29 class ViewAndroid; |
32 class WindowAndroidCompositor; | 30 class WindowAndroidCompositor; |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 scoped_refptr<cc::Layer> background_layer_; | 105 scoped_refptr<cc::Layer> background_layer_; |
108 | 106 |
109 gfx::Size container_size_in_dip_; | 107 gfx::Size container_size_in_dip_; |
110 | 108 |
111 DISALLOW_COPY_AND_ASSIGN(DelegatedFrameHostAndroid); | 109 DISALLOW_COPY_AND_ASSIGN(DelegatedFrameHostAndroid); |
112 }; | 110 }; |
113 | 111 |
114 } // namespace ui | 112 } // namespace ui |
115 | 113 |
116 #endif // UI_ANDROID_DELEGATED_FRAME_HOST_ANDROID_H_ | 114 #endif // UI_ANDROID_DELEGATED_FRAME_HOST_ANDROID_H_ |
OLD | NEW |