| Index: gpu/command_buffer/service/gles2_cmd_decoder_unittest_context_state.cc
|
| diff --git a/gpu/command_buffer/service/gles2_cmd_decoder_unittest_context_state.cc b/gpu/command_buffer/service/gles2_cmd_decoder_unittest_context_state.cc
|
| index 10e31d130cfad26f655c5e4cc8ebaa5815f9cdf8..b7a9f406797fef2549afacd6f2a84a73f13dcd70 100644
|
| --- a/gpu/command_buffer/service/gles2_cmd_decoder_unittest_context_state.cc
|
| +++ b/gpu/command_buffer/service/gles2_cmd_decoder_unittest_context_state.cc
|
| @@ -31,7 +31,7 @@
|
| #define GL_DEPTH24_STENCIL8 0x88F0
|
| #endif
|
|
|
| -using ::gfx::MockGLInterface;
|
| +using ::gl::MockGLInterface;
|
| using ::testing::_;
|
| using ::testing::DoAll;
|
| using ::testing::InSequence;
|
| @@ -52,10 +52,9 @@ namespace gles2 {
|
|
|
| namespace {
|
|
|
| -void SetupUpdateES3UnpackParametersExpectations(
|
| - ::gfx::MockGLInterface* gl,
|
| - GLint row_length,
|
| - GLint image_height) {
|
| +void SetupUpdateES3UnpackParametersExpectations(::gl::MockGLInterface* gl,
|
| + GLint row_length,
|
| + GLint image_height) {
|
| EXPECT_CALL(*gl, PixelStorei(GL_UNPACK_ROW_LENGTH, row_length))
|
| .Times(1)
|
| .RetiresOnSaturation();
|
|
|