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

Unified Diff: gpu/command_buffer/client/fenced_allocator_test.cc

Issue 1345813002: Added a unique command buffer ID for command buffers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added gpu namespace for gles2_conform_support/egl/display.cc Created 5 years, 3 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: gpu/command_buffer/client/fenced_allocator_test.cc
diff --git a/gpu/command_buffer/client/fenced_allocator_test.cc b/gpu/command_buffer/client/fenced_allocator_test.cc
index 94faf0ca917eb8cb7012a71570a1160f501aa6f5..01dc8a9a8b4377d9dbe66f098920da81f88f0a60 100644
--- a/gpu/command_buffer/client/fenced_allocator_test.cc
+++ b/gpu/command_buffer/client/fenced_allocator_test.cc
@@ -49,7 +49,9 @@ class BaseFencedAllocatorTest : public testing::Test {
EXPECT_TRUE(manager->Initialize());
}
command_buffer_.reset(
- new CommandBufferService(transfer_buffer_manager_.get()));
+ new CommandBufferService(transfer_buffer_manager_.get(),
+ kCommandBufferNamespace_InProcess,
+ 0));
EXPECT_TRUE(command_buffer_->Initialize());
gpu_scheduler_.reset(new GpuScheduler(

Powered by Google App Engine
This is Rietveld 408576698