Index: gpu/command_buffer/service/test_helper.cc |
diff --git a/gpu/command_buffer/service/test_helper.cc b/gpu/command_buffer/service/test_helper.cc |
index c164eea9d92c9cae1743be4653728179738014e5..4e55dad18c1176b98b0dc422162118b4a75c1028 100644 |
--- a/gpu/command_buffer/service/test_helper.cc |
+++ b/gpu/command_buffer/service/test_helper.cc |
@@ -600,7 +600,7 @@ void TestHelper::DoBufferData( |
manager->DoBufferData(error_state, buffer, size, usage, data); |
} |
-void TestHelper::SetTexParameterWithExpectations( |
+void TestHelper::SetTexParameteriWithExpectations( |
::gfx::MockGLInterface* gl, MockErrorState* error_state, |
TextureManager* manager, TextureRef* texture_ref, |
GLenum pname, GLint value, GLenum error) { |
@@ -616,11 +616,11 @@ void TestHelper::SetTexParameterWithExpectations( |
.Times(1) |
.RetiresOnSaturation(); |
} else { |
- EXPECT_CALL(*error_state, SetGLErrorInvalidParam(_, _, error, _, _, _)) |
+ EXPECT_CALL(*error_state, SetGLErrorInvalidParami(_, _, error, _, _, _)) |
.Times(1) |
.RetiresOnSaturation(); |
} |
- manager->SetParameter("", error_state, texture_ref, pname, value); |
+ manager->SetParameteri("", error_state, texture_ref, pname, value); |
} |
ScopedGLImplementationSetter::ScopedGLImplementationSetter( |