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

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: Refactored to always use a ShareGroup + Rebase errata. Created 6 years, 12 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 ca2ccf9ee0510b4fb0d1c5478784f78c0465d731..dd1b63b31aa3c86eaeb3b45fcd70dd6904b18e3d 100644
--- a/content/browser/gpu/gpu_ipc_browsertests.cc
+++ b/content/browser/gpu/gpu_ipc_browsertests.cc
@@ -41,7 +41,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();
@@ -130,7 +131,8 @@ class BrowserGpuChannelHostFactoryTest : public ContextTestBase {
GetGpuChannel(),
blink::WebGraphicsContext3D::Attributes(),
GURL(),
- WebGraphicsContext3DCommandBufferImpl::SharedMemoryLimits()));
+ WebGraphicsContext3DCommandBufferImpl::SharedMemoryLimits(),
+ NULL));
}
};

Powered by Google App Engine
This is Rietveld 408576698