Chromium Code Reviews

Unified Diff: o3d/gpu_plugin/gpu_plugin_object_unittest.cc

Issue 234001: GPUProcessor uses O3D command buffer service to render to a window.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « o3d/gpu_plugin/gpu_plugin_object.cc ('k') | o3d/gpu_plugin/gpu_processor.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: o3d/gpu_plugin/gpu_plugin_object_unittest.cc
===================================================================
--- o3d/gpu_plugin/gpu_plugin_object_unittest.cc (revision 26879)
+++ o3d/gpu_plugin/gpu_plugin_object_unittest.cc (working copy)
@@ -106,7 +106,7 @@
TEST_F(GPUPluginObjectTest, OpenCommandBufferReturnsInitializedCommandBuffer) {
// Intercept creation of command buffer object and return mock.
NPObjectPointer<MockCommandBuffer> command_buffer =
- NPCreateObject<StrictMock<MockCommandBuffer> >(NULL);
+ NPCreateObject<MockCommandBuffer>(NULL);
EXPECT_CALL(mock_browser_, CreateObject(NULL,
NPGetClass<CommandBuffer>()))
.WillOnce(Return(command_buffer.ToReturned()));
« no previous file with comments | « o3d/gpu_plugin/gpu_plugin_object.cc ('k') | o3d/gpu_plugin/gpu_processor.h » ('j') | no next file with comments »

Powered by Google App Engine