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

Unified Diff: gpu/ipc/service/gpu_memory_buffer_factory_surface_texture.h

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/service/gpu_memory_buffer_factory_surface_texture.h
diff --git a/gpu/ipc/service/gpu_memory_buffer_factory_surface_texture.h b/gpu/ipc/service/gpu_memory_buffer_factory_surface_texture.h
index 4c7544bb98f8f8b5c7056fb8b55360fcb5116499..d8c3ee76dc7d457b28e3a9d2959d0915b33e36ef 100644
--- a/gpu/ipc/service/gpu_memory_buffer_factory_surface_texture.h
+++ b/gpu/ipc/service/gpu_memory_buffer_factory_surface_texture.h
@@ -16,12 +16,9 @@
#include "ui/gfx/geometry/size.h"
#include "ui/gfx/gpu_memory_buffer.h"
-namespace gfx {
-class SurfaceTexture;
-}
-
namespace gl {
class GLImage;
+class SurfaceTexture;
}
namespace gpu {
@@ -62,7 +59,8 @@ class GPU_EXPORT GpuMemoryBufferFactorySurfaceTexture
private:
typedef std::pair<int, int> SurfaceTextureMapKey;
typedef base::hash_map<SurfaceTextureMapKey,
- scoped_refptr<gfx::SurfaceTexture>> SurfaceTextureMap;
+ scoped_refptr<gl::SurfaceTexture>>
+ SurfaceTextureMap;
SurfaceTextureMap surface_textures_;
base::Lock surface_textures_lock_;
};

Powered by Google App Engine
This is Rietveld 408576698