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

Unified Diff: content/browser/gpu/gpu_ipc_browsertests.cc

Issue 101223005: Plumbing explicit share groups through context creation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 10 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/gpu/gpu_ipc_browsertests.cc
diff --git a/content/browser/gpu/gpu_ipc_browsertests.cc b/content/browser/gpu/gpu_ipc_browsertests.cc
index d1ebfffc9ae3c83fd18560f26fab07ede55c727d..e4173756b1c8864b0cf390194f69a92175a1fe08 100644
--- a/content/browser/gpu/gpu_ipc_browsertests.cc
+++ b/content/browser/gpu/gpu_ipc_browsertests.cc
@@ -42,7 +42,8 @@ class ContextTestBase : public content::ContentBrowserTest {
gpu_channel_host.get(),
blink::WebGraphicsContext3D::Attributes(),
GURL(),
- WebGraphicsContext3DCommandBufferImpl::SharedMemoryLimits()));
+ WebGraphicsContext3DCommandBufferImpl::SharedMemoryLimits(),
+ NULL));
CHECK(context_.get());
context_->makeContextCurrent();
context_support_ = context_->GetContextSupport();
@@ -129,7 +130,8 @@ class BrowserGpuChannelHostFactoryTest : public ContextTestBase {
GetGpuChannel(),
blink::WebGraphicsContext3D::Attributes(),
GURL(),
- WebGraphicsContext3DCommandBufferImpl::SharedMemoryLimits()));
+ WebGraphicsContext3DCommandBufferImpl::SharedMemoryLimits(),
+ NULL));
}
};

Powered by Google App Engine
This is Rietveld 408576698