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

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

Issue 2018603002: Mac: Clean up ifdefs in output surface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Incorporate review feedback Created 4 years, 6 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_BROWSER_COMPOSITOR_GPU_OUTPUT_SURFACE_MAC_H_
6 #define CONTENT_BROWSER_COMPOSITOR_GPU_OUTPUT_SURFACE_MAC_H_
7
8 #include "content/browser/compositor/gpu_surfaceless_browser_compositor_output_s urface.h"
9
10 namespace content {
11
12 class GpuOutputSurfaceMac
13 : public GpuSurfacelessBrowserCompositorOutputSurface {
14 public:
15 GpuOutputSurfaceMac(
16 scoped_refptr<ContextProviderCommandBuffer> context,
17 gpu::SurfaceHandle surface_handle,
18 scoped_refptr<ui::CompositorVSyncManager> vsync_manager,
19 base::SingleThreadTaskRunner* task_runner,
20 std::unique_ptr<display_compositor::CompositorOverlayCandidateValidator>
21 overlay_candidate_validator,
22 gpu::GpuMemoryBufferManager* gpu_memory_buffer_manager);
23 ~GpuOutputSurfaceMac() override;
24
25 // cc::OutputSurface implementation.
26 void SwapBuffers(cc::CompositorFrame* frame) override;
27 bool SurfaceIsSuspendForRecycle() const override;
28
29 // BrowserCompositorOutputSurface implementation.
30 void OnGpuSwapBuffersCompleted(
31 const std::vector<ui::LatencyInfo>& latency_info,
32 gfx::SwapResult result,
33 const gpu::GpuProcessHostedCALayerTreeParamsMac* params_mac) override;
34 void SetSurfaceSuspendedForRecycle(bool suspended) override;
35
36 private:
37 enum ShouldShowFramesState {
38 // Frames that come from the GPU process should appear on-screen.
39 SHOULD_SHOW_FRAMES,
40 // 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.
42 SHOULD_NOT_SHOW_FRAMES_SUSPENDED,
43 // 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
45 // are for pre-suspend content and should not be displayed.
46 SHOULD_NOT_SHOW_FRAMES_NO_SWAP_AFTER_SUSPENDED,
47 };
48 ShouldShowFramesState should_show_frames_state_ = SHOULD_SHOW_FRAMES;
49
50 DISALLOW_COPY_AND_ASSIGN(GpuOutputSurfaceMac);
51 };
52
53 } // namespace content
54
55 #endif // CONTENT_BROWSER_COMPOSITOR_GPU_OUTPUT_SURFACE_MAC_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698