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

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

Issue 1937313003: Hide WebGraphicsContext3DCommandBufferImpl. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: construct: . Created 4 years, 8 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
Index: content/browser/renderer_host/render_widget_host_view_android.cc
diff --git a/content/browser/renderer_host/render_widget_host_view_android.cc b/content/browser/renderer_host/render_widget_host_view_android.cc
index 1ab6c84f7709ae4167a228659330b24291952335..0bd1acd2bfb07c43ba7189a48f72321860f7b1f7 100644
--- a/content/browser/renderer_host/render_widget_host_view_android.cc
+++ b/content/browser/renderer_host/render_widget_host_view_android.cc
@@ -186,13 +186,9 @@ void GLHelperHolder::Initialize() {
bool automatic_flushes = false;
GURL url("chrome://gpu/RenderWidgetHostViewAndroid");
- std::unique_ptr<WebGraphicsContext3DCommandBufferImpl> context(
- new WebGraphicsContext3DCommandBufferImpl(
- gpu::kNullSurfaceHandle, // offscreen
- url, gpu_channel_host.get(), gfx::PreferIntegratedGpu,
- automatic_flushes));
provider_ = new ContextProviderCommandBuffer(
- std::move(context), limits, attributes, nullptr,
+ std::move(gpu_channel_host), gpu::kNullSurfaceHandle, url,
+ gfx::PreferIntegratedGpu, automatic_flushes, limits, attributes, nullptr,
command_buffer_metrics::BROWSER_OFFSCREEN_MAINTHREAD_CONTEXT);
if (!provider_->BindToCurrentThread())
return;

Powered by Google App Engine
This is Rietveld 408576698