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

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

Issue 2873243002: Move components/display_compositor to components/viz/display_compositor (Closed)
Patch Set: Rebase Created 3 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 #include "ui/gfx/native_widget_types.h" 10 #include "ui/gfx/native_widget_types.h"
11 11
12 namespace content { 12 namespace content {
13 13
14 class GpuOutputSurfaceMac 14 class GpuOutputSurfaceMac
15 : public GpuSurfacelessBrowserCompositorOutputSurface { 15 : public GpuSurfacelessBrowserCompositorOutputSurface {
16 public: 16 public:
17 GpuOutputSurfaceMac( 17 GpuOutputSurfaceMac(
18 gfx::AcceleratedWidget widget, 18 gfx::AcceleratedWidget widget,
19 scoped_refptr<ui::ContextProviderCommandBuffer> context, 19 scoped_refptr<ui::ContextProviderCommandBuffer> context,
20 gpu::SurfaceHandle surface_handle, 20 gpu::SurfaceHandle surface_handle,
21 const UpdateVSyncParametersCallback& update_vsync_parameters_callback, 21 const UpdateVSyncParametersCallback& update_vsync_parameters_callback,
22 std::unique_ptr<display_compositor::CompositorOverlayCandidateValidator> 22 std::unique_ptr<viz::CompositorOverlayCandidateValidator>
23 overlay_candidate_validator, 23 overlay_candidate_validator,
24 gpu::GpuMemoryBufferManager* gpu_memory_buffer_manager); 24 gpu::GpuMemoryBufferManager* gpu_memory_buffer_manager);
25 ~GpuOutputSurfaceMac() override; 25 ~GpuOutputSurfaceMac() override;
26 26
27 // cc::OutputSurface implementation. 27 // cc::OutputSurface implementation.
28 void SwapBuffers(cc::OutputSurfaceFrame frame) override; 28 void SwapBuffers(cc::OutputSurfaceFrame frame) override;
29 bool SurfaceIsSuspendForRecycle() const override; 29 bool SurfaceIsSuspendForRecycle() const override;
30 30
31 // BrowserCompositorOutputSurface implementation. 31 // BrowserCompositorOutputSurface implementation.
32 void OnGpuSwapBuffersCompleted( 32 void OnGpuSwapBuffersCompleted(
(...skipping 22 matching lines...) Expand all
55 SHOULD_NOT_SHOW_FRAMES_NO_SWAP_AFTER_SUSPENDED, 55 SHOULD_NOT_SHOW_FRAMES_NO_SWAP_AFTER_SUSPENDED,
56 }; 56 };
57 ShouldShowFramesState should_show_frames_state_ = SHOULD_SHOW_FRAMES; 57 ShouldShowFramesState should_show_frames_state_ = SHOULD_SHOW_FRAMES;
58 58
59 DISALLOW_COPY_AND_ASSIGN(GpuOutputSurfaceMac); 59 DISALLOW_COPY_AND_ASSIGN(GpuOutputSurfaceMac);
60 }; 60 };
61 61
62 } // namespace content 62 } // namespace content
63 63
64 #endif // CONTENT_BROWSER_COMPOSITOR_GPU_OUTPUT_SURFACE_MAC_H_ 64 #endif // CONTENT_BROWSER_COMPOSITOR_GPU_OUTPUT_SURFACE_MAC_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698