Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(262)

Unified Diff: gpu/ipc/client/android/in_process_surface_texture_manager.cc

Issue 1998723002: Move code in ui/gl/* from gfx:: to gl:: (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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(
« no previous file with comments | « gpu/ipc/client/android/in_process_surface_texture_manager.h ('k') | gpu/ipc/client/command_buffer_proxy_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698