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

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

Issue 2018793002: Mac: Move remote layer use to GpuOutputSurfaceMac (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@clean_up_mac
Patch Set: Created 4 years, 7 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
tapted 2016/05/27 00:33:19 Is there an upstream patch? (this file doesn't see
ccameron 2016/06/03 02:43:00 Yes -- it has landed now.
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 base::SingleThreadTaskRunner* task_runner, 19 base::SingleThreadTaskRunner* task_runner,
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:
37 // Store remote layers in a separate structure, so that non-Objective-C files
38 // may include this header.
39 class RemoteLayers;
tapted 2016/05/27 00:33:19 struct? (otherwise my brain sees "class" and wants
ccameron 2016/06/03 02:43:01 Done.
40 std::unique_ptr<RemoteLayers> remote_layers_;
41
37 enum ShouldShowFramesState { 42 enum ShouldShowFramesState {
38 // Frames that come from the GPU process should appear on-screen. 43 // Frames that come from the GPU process should appear on-screen.
39 SHOULD_SHOW_FRAMES, 44 SHOULD_SHOW_FRAMES,
40 // The compositor has been suspended. Any frames that come from the GPU 45 // The compositor has been suspended. Any frames that come from the GPU
41 // process are for the pre-suspend content and should not be displayed. 46 // process are for the pre-suspend content and should not be displayed.
42 SHOULD_NOT_SHOW_FRAMES_SUSPENDED, 47 SHOULD_NOT_SHOW_FRAMES_SUSPENDED,
43 // The compositor has been un-suspended, but has not yet issued a swap 48 // The compositor has been un-suspended, but has not yet issued a swap
44 // since being un-suspended, so any frames that come from the GPU process 49 // since being un-suspended, so any frames that come from the GPU process
45 // are for pre-suspend content and should not be displayed. 50 // are for pre-suspend content and should not be displayed.
46 SHOULD_NOT_SHOW_FRAMES_NO_SWAP_AFTER_SUSPENDED, 51 SHOULD_NOT_SHOW_FRAMES_NO_SWAP_AFTER_SUSPENDED,
47 }; 52 };
48 ShouldShowFramesState should_show_frames_state_ = SHOULD_SHOW_FRAMES; 53 ShouldShowFramesState should_show_frames_state_ = SHOULD_SHOW_FRAMES;
49 54
50 DISALLOW_COPY_AND_ASSIGN(GpuOutputSurfaceMac); 55 DISALLOW_COPY_AND_ASSIGN(GpuOutputSurfaceMac);
51 }; 56 };
52 57
53 } // namespace content 58 } // namespace content
54 59
55 #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