| Index: gpu/gles2_conform_support/egl/surface.cc
|
| diff --git a/gpu/gles2_conform_support/egl/surface.cc b/gpu/gles2_conform_support/egl/surface.cc
|
| index 726d75349c561346ec26c7d26a338dc1466cfb53..ae8c8423006175017bc25f0b7aaca309aad053ce 100644
|
| --- a/gpu/gles2_conform_support/egl/surface.cc
|
| +++ b/gpu/gles2_conform_support/egl/surface.cc
|
| @@ -7,7 +7,7 @@
|
|
|
| namespace egl {
|
|
|
| -Surface::Surface(gfx::GLSurface* gl_surface, const Config* config)
|
| +Surface::Surface(gl::GLSurface* gl_surface, const Config* config)
|
| : is_current_in_some_thread_(false),
|
| gl_surface_(gl_surface),
|
| config_(config) {}
|
| @@ -15,7 +15,7 @@ Surface::Surface(gfx::GLSurface* gl_surface, const Config* config)
|
| Surface::~Surface() {
|
| }
|
|
|
| -gfx::GLSurface* Surface::gl_surface() const {
|
| +gl::GLSurface* Surface::gl_surface() const {
|
| return gl_surface_.get();
|
| }
|
|
|
|
|