| 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 struct GpuProcessHostedCALayerTreeParamsMac; |
| 23 } | 23 } |
| 24 | 24 |
| 25 namespace ui { | 25 namespace ui { |
| 26 class CompositorVSyncManager; | 26 class CompositorVSyncManager; |
| 27 class LatencyInfo; |
| 27 } | 28 } |
| 28 | 29 |
| 29 namespace content { | 30 namespace content { |
| 30 class ContextProviderCommandBuffer; | 31 class ContextProviderCommandBuffer; |
| 31 class ReflectorTexture; | 32 class ReflectorTexture; |
| 32 | 33 |
| 33 // Adapts a WebGraphicsContext3DCommandBufferImpl into a | 34 // Adapts a WebGraphicsContext3DCommandBufferImpl into a |
| 34 // cc::OutputSurface that also handles vsync parameter updates | 35 // cc::OutputSurface that also handles vsync parameter updates |
| 35 // arriving from the GPU process. | 36 // arriving from the GPU process. |
| 36 class GpuBrowserCompositorOutputSurface | 37 class GpuBrowserCompositorOutputSurface |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 std::unique_ptr<ReflectorTexture> reflector_texture_; | 84 std::unique_ptr<ReflectorTexture> reflector_texture_; |
| 84 base::WeakPtrFactory<GpuBrowserCompositorOutputSurface> weak_ptr_factory_; | 85 base::WeakPtrFactory<GpuBrowserCompositorOutputSurface> weak_ptr_factory_; |
| 85 | 86 |
| 86 private: | 87 private: |
| 87 DISALLOW_COPY_AND_ASSIGN(GpuBrowserCompositorOutputSurface); | 88 DISALLOW_COPY_AND_ASSIGN(GpuBrowserCompositorOutputSurface); |
| 88 }; | 89 }; |
| 89 | 90 |
| 90 } // namespace content | 91 } // namespace content |
| 91 | 92 |
| 92 #endif // CONTENT_BROWSER_COMPOSITOR_GPU_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H_ | 93 #endif // CONTENT_BROWSER_COMPOSITOR_GPU_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H_ |
| OLD | NEW |