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 CONTENT_BROWSER_COMPOSITOR_GPU_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H_ | 5 #ifndef CONTENT_BROWSER_COMPOSITOR_GPU_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H_ |
6 #define CONTENT_BROWSER_COMPOSITOR_GPU_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H_ | 6 #define CONTENT_BROWSER_COMPOSITOR_GPU_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
11 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
12 #include "build/build_config.h" | 12 #include "build/build_config.h" |
13 #include "content/browser/compositor/browser_compositor_output_surface.h" | 13 #include "content/browser/compositor/browser_compositor_output_surface.h" |
14 #include "ui/gfx/swap_result.h" | 14 #include "ui/gfx/swap_result.h" |
15 | 15 |
16 namespace display_compositor { | 16 namespace display_compositor { |
17 class CompositorOverlayCandidateValidator; | 17 class CompositorOverlayCandidateValidator; |
18 } | 18 } |
19 | 19 |
20 namespace gpu { | 20 namespace gpu { |
21 class CommandBufferProxyImpl; | 21 class CommandBufferProxyImpl; |
| 22 struct GpuProcessHostedCALayerTreeParamsMac; |
22 } | 23 } |
23 | 24 |
24 namespace ui { | 25 namespace ui { |
25 class CompositorVSyncManager; | 26 class CompositorVSyncManager; |
26 } | 27 } |
27 | 28 |
28 namespace content { | 29 namespace content { |
| 30 class ContextProviderCommandBuffer; |
29 class ReflectorTexture; | 31 class ReflectorTexture; |
30 | 32 |
31 // Adapts a WebGraphicsContext3DCommandBufferImpl into a | 33 // Adapts a WebGraphicsContext3DCommandBufferImpl into a |
32 // cc::OutputSurface that also handles vsync parameter updates | 34 // cc::OutputSurface that also handles vsync parameter updates |
33 // arriving from the GPU process. | 35 // arriving from the GPU process. |
34 class GpuBrowserCompositorOutputSurface | 36 class GpuBrowserCompositorOutputSurface |
35 : public BrowserCompositorOutputSurface { | 37 : public BrowserCompositorOutputSurface { |
36 public: | 38 public: |
37 GpuBrowserCompositorOutputSurface( | 39 GpuBrowserCompositorOutputSurface( |
38 scoped_refptr<ContextProviderCommandBuffer> context, | 40 scoped_refptr<ContextProviderCommandBuffer> context, |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 std::unique_ptr<ReflectorTexture> reflector_texture_; | 83 std::unique_ptr<ReflectorTexture> reflector_texture_; |
82 base::WeakPtrFactory<GpuBrowserCompositorOutputSurface> weak_ptr_factory_; | 84 base::WeakPtrFactory<GpuBrowserCompositorOutputSurface> weak_ptr_factory_; |
83 | 85 |
84 private: | 86 private: |
85 DISALLOW_COPY_AND_ASSIGN(GpuBrowserCompositorOutputSurface); | 87 DISALLOW_COPY_AND_ASSIGN(GpuBrowserCompositorOutputSurface); |
86 }; | 88 }; |
87 | 89 |
88 } // namespace content | 90 } // namespace content |
89 | 91 |
90 #endif // CONTENT_BROWSER_COMPOSITOR_GPU_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H_ | 92 #endif // CONTENT_BROWSER_COMPOSITOR_GPU_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H_ |
OLD | NEW |