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 CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_DELEGATE_H_ | 5 #ifndef CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_DELEGATE_H_ |
6 #define CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_DELEGATE_H_ | 6 #define CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_DELEGATE_H_ |
7 | 7 |
8 namespace blink { | 8 namespace blink { |
9 class WebWidget; | 9 class WebWidget; |
10 struct WebScreenInfo; | |
11 } | 10 } |
12 | 11 |
13 namespace cc { | 12 namespace cc { |
14 class BeginFrameSource; | 13 class BeginFrameSource; |
15 class CopyOutputRequest; | 14 class CopyOutputRequest; |
16 class OutputSurface; | 15 class OutputSurface; |
17 class SwapPromise; | 16 class SwapPromise; |
18 } | 17 } |
19 | 18 |
20 namespace content { | 19 namespace content { |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 virtual std::unique_ptr<cc::SwapPromise> RequestCopyOfOutputForLayoutTest( | 89 virtual std::unique_ptr<cc::SwapPromise> RequestCopyOfOutputForLayoutTest( |
91 std::unique_ptr<cc::CopyOutputRequest> request) = 0; | 90 std::unique_ptr<cc::CopyOutputRequest> request) = 0; |
92 | 91 |
93 protected: | 92 protected: |
94 virtual ~RenderWidgetCompositorDelegate() {} | 93 virtual ~RenderWidgetCompositorDelegate() {} |
95 }; | 94 }; |
96 | 95 |
97 } // namespace content | 96 } // namespace content |
98 | 97 |
99 #endif // CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_DELEGATE_H_ | 98 #endif // CONTENT_RENDERER_GPU_RENDER_WIDGET_COMPOSITOR_DELEGATE_H_ |
OLD | NEW |