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

Unified Diff: content/browser/compositor/vulkan_browser_compositor_output_surface.cc

Issue 2557913002: Remove begin_frame_source argument from VulkanBrowserCompositorOutputSurface ctor (Closed)
Patch Set: Created 4 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/compositor/vulkan_browser_compositor_output_surface.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/compositor/vulkan_browser_compositor_output_surface.cc
diff --git a/content/browser/compositor/vulkan_browser_compositor_output_surface.cc b/content/browser/compositor/vulkan_browser_compositor_output_surface.cc
index 5cd2930ab0c0ee43ef4b5fca8235629bc80265fd..b606893c516736111e9c120b70320e098ae78745 100644
--- a/content/browser/compositor/vulkan_browser_compositor_output_surface.cc
+++ b/content/browser/compositor/vulkan_browser_compositor_output_surface.cc
@@ -12,11 +12,9 @@ namespace content {
VulkanBrowserCompositorOutputSurface::VulkanBrowserCompositorOutputSurface(
scoped_refptr<cc::VulkanContextProvider> context,
- const UpdateVSyncParametersCallback& update_vsync_parameters_callback,
- cc::SyntheticBeginFrameSource* begin_frame_source)
+ const UpdateVSyncParametersCallback& update_vsync_parameters_callback)
: BrowserCompositorOutputSurface(std::move(context),
- update_vsync_parameters_callback,
- begin_frame_source),
+ update_vsync_parameters_callback),
weak_ptr_factory_(this) {}
VulkanBrowserCompositorOutputSurface::~VulkanBrowserCompositorOutputSurface() {
« no previous file with comments | « content/browser/compositor/vulkan_browser_compositor_output_surface.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698