| Index: gpu/ipc/client/android/in_process_surface_texture_manager.cc
|
| diff --git a/gpu/ipc/client/android/in_process_surface_texture_manager.cc b/gpu/ipc/client/android/in_process_surface_texture_manager.cc
|
| index 563e59f5852d640af31aecc2d2dff8608507e1cb..58a414bd4d03962d538dce925afd0eb926f3ada9 100644
|
| --- a/gpu/ipc/client/android/in_process_surface_texture_manager.cc
|
| +++ b/gpu/ipc/client/android/in_process_surface_texture_manager.cc
|
| @@ -24,13 +24,13 @@ InProcessSurfaceTextureManager* InProcessSurfaceTextureManager::GetInstance() {
|
| void InProcessSurfaceTextureManager::RegisterSurfaceTexture(
|
| int surface_texture_id,
|
| int client_id,
|
| - gfx::SurfaceTexture* surface_texture) {
|
| + gl::SurfaceTexture* surface_texture) {
|
| base::AutoLock lock(lock_);
|
|
|
| DCHECK(surface_textures_.find(surface_texture_id) == surface_textures_.end());
|
| surface_textures_.add(
|
| surface_texture_id,
|
| - base::WrapUnique(new gfx::ScopedJavaSurface(surface_texture)));
|
| + base::WrapUnique(new gl::ScopedJavaSurface(surface_texture)));
|
| }
|
|
|
| void InProcessSurfaceTextureManager::UnregisterSurfaceTexture(
|
|
|