Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(52)

Side by Side Diff: content/browser/compositor/gpu_output_surface_mac.h

Issue 2096493002: Make cc::CompositorFrames movable [Part 1 of 2] (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed Dana's nits Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 CONTENT_BROWSER_COMPOSITOR_GPU_OUTPUT_SURFACE_MAC_H_ 5 #ifndef CONTENT_BROWSER_COMPOSITOR_GPU_OUTPUT_SURFACE_MAC_H_
6 #define CONTENT_BROWSER_COMPOSITOR_GPU_OUTPUT_SURFACE_MAC_H_ 6 #define CONTENT_BROWSER_COMPOSITOR_GPU_OUTPUT_SURFACE_MAC_H_
7 7
8 #include "content/browser/compositor/gpu_surfaceless_browser_compositor_output_s urface.h" 8 #include "content/browser/compositor/gpu_surfaceless_browser_compositor_output_s urface.h"
9 9
10 namespace content { 10 namespace content {
11 11
12 class GpuOutputSurfaceMac 12 class GpuOutputSurfaceMac
13 : public GpuSurfacelessBrowserCompositorOutputSurface { 13 : public GpuSurfacelessBrowserCompositorOutputSurface {
14 public: 14 public:
15 GpuOutputSurfaceMac( 15 GpuOutputSurfaceMac(
16 scoped_refptr<ContextProviderCommandBuffer> context, 16 scoped_refptr<ContextProviderCommandBuffer> context,
17 gpu::SurfaceHandle surface_handle, 17 gpu::SurfaceHandle surface_handle,
18 scoped_refptr<ui::CompositorVSyncManager> vsync_manager, 18 scoped_refptr<ui::CompositorVSyncManager> vsync_manager,
19 cc::SyntheticBeginFrameSource* begin_frame_source, 19 cc::SyntheticBeginFrameSource* begin_frame_source,
20 std::unique_ptr<display_compositor::CompositorOverlayCandidateValidator> 20 std::unique_ptr<display_compositor::CompositorOverlayCandidateValidator>
21 overlay_candidate_validator, 21 overlay_candidate_validator,
22 gpu::GpuMemoryBufferManager* gpu_memory_buffer_manager); 22 gpu::GpuMemoryBufferManager* gpu_memory_buffer_manager);
23 ~GpuOutputSurfaceMac() override; 23 ~GpuOutputSurfaceMac() override;
24 24
25 // cc::OutputSurface implementation. 25 // cc::OutputSurface implementation.
26 void SwapBuffers(cc::CompositorFrame* frame) override; 26 void SwapBuffers(cc::CompositorFrame frame) override;
27 bool SurfaceIsSuspendForRecycle() const override; 27 bool SurfaceIsSuspendForRecycle() const override;
28 28
29 // BrowserCompositorOutputSurface implementation. 29 // BrowserCompositorOutputSurface implementation.
30 void OnGpuSwapBuffersCompleted( 30 void OnGpuSwapBuffersCompleted(
31 const std::vector<ui::LatencyInfo>& latency_info, 31 const std::vector<ui::LatencyInfo>& latency_info,
32 gfx::SwapResult result, 32 gfx::SwapResult result,
33 const gpu::GpuProcessHostedCALayerTreeParamsMac* params_mac) override; 33 const gpu::GpuProcessHostedCALayerTreeParamsMac* params_mac) override;
34 void SetSurfaceSuspendedForRecycle(bool suspended) override; 34 void SetSurfaceSuspendedForRecycle(bool suspended) override;
35 35
36 private: 36 private:
(...skipping 14 matching lines...) Expand all
51 SHOULD_NOT_SHOW_FRAMES_NO_SWAP_AFTER_SUSPENDED, 51 SHOULD_NOT_SHOW_FRAMES_NO_SWAP_AFTER_SUSPENDED,
52 }; 52 };
53 ShouldShowFramesState should_show_frames_state_ = SHOULD_SHOW_FRAMES; 53 ShouldShowFramesState should_show_frames_state_ = SHOULD_SHOW_FRAMES;
54 54
55 DISALLOW_COPY_AND_ASSIGN(GpuOutputSurfaceMac); 55 DISALLOW_COPY_AND_ASSIGN(GpuOutputSurfaceMac);
56 }; 56 };
57 57
58 } // namespace content 58 } // namespace content
59 59
60 #endif // CONTENT_BROWSER_COMPOSITOR_GPU_OUTPUT_SURFACE_MAC_H_ 60 #endif // CONTENT_BROWSER_COMPOSITOR_GPU_OUTPUT_SURFACE_MAC_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698