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

Unified Diff: content/browser/renderer_host/compositor_impl_android.cc

Issue 2027103002: Fix VulkanOutputSurface build error (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/renderer_host/compositor_impl_android.cc
diff --git a/content/browser/renderer_host/compositor_impl_android.cc b/content/browser/renderer_host/compositor_impl_android.cc
index 098a95fc4383056b54feec6fb04348117c89de73..eda0970590b731463c81e685c6b49fd1999f1942 100644
--- a/content/browser/renderer_host/compositor_impl_android.cc
+++ b/content/browser/renderer_host/compositor_impl_android.cc
@@ -237,10 +237,7 @@ class VulkanOutputSurface : public cc::OutputSurface {
VulkanOutputSurface(
scoped_refptr<cc::VulkanContextProvider> vulkan_context_provider,
std::unique_ptr<ExternalBeginFrameSource> begin_frame_source)
- : OutputSurface(nullptr,
- nullptr,
- std::move(vulkan_context_provider),
- nullptr),
+ : OutputSurface(std::move(vulkan_context_provider)),
begin_frame_source_(std::move(begin_frame_source)) {}
~VulkanOutputSurface() override { Destroy(); }
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698