| Index: gpu/command_buffer/tests/gl_unittests_android.cc
|
| diff --git a/gpu/command_buffer/tests/gl_unittests_android.cc b/gpu/command_buffer/tests/gl_unittests_android.cc
|
| index 2767f1625fdfbc9379c5b9a36671e8e303934933..a4aa828ad1394c5f7468e856e37a5bf36b031f94 100644
|
| --- a/gpu/command_buffer/tests/gl_unittests_android.cc
|
| +++ b/gpu/command_buffer/tests/gl_unittests_android.cc
|
| @@ -35,12 +35,12 @@ TEST_F(GLSurfaceTextureTest, SimpleTest) {
|
| // abstraction for the SurfaceTexture in this test.
|
| GLuint texture = 0xFEEDBEEF;
|
|
|
| - scoped_refptr<gfx::SurfaceTexture> surface_texture(
|
| - gfx::SurfaceTexture::Create(texture));
|
| + scoped_refptr<gl::SurfaceTexture> surface_texture(
|
| + gl::SurfaceTexture::Create(texture));
|
| gfx::AcceleratedWidget window = surface_texture->CreateSurface();
|
| EXPECT_TRUE(window != NULL);
|
|
|
| - scoped_refptr<gfx::GLSurface> gl_surface =
|
| + scoped_refptr<gl::GLSurface> gl_surface =
|
| gl::init::CreateViewGLSurface(window);
|
| EXPECT_TRUE(gl_surface.get() != NULL);
|
|
|
|
|