diff options
author | tfarina <tfarina@chromium.org> | 2015-10-29 05:50:45 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-10-29 12:51:20 +0000 |
commit | df856e02c830fb37ca5afceac7a12b4bddf37a84 (patch) | |
tree | 61983bf3545c61f167673bdd1c8b19084bfe3472 /gpu/command_buffer/service/image_manager.h | |
parent | 69a0876721e24f35ba1f7c6338ed07ca684f5cb1 (diff) | |
download | chromium_src-df856e02c830fb37ca5afceac7a12b4bddf37a84.zip chromium_src-df856e02c830fb37ca5afceac7a12b4bddf37a84.tar.gz chromium_src-df856e02c830fb37ca5afceac7a12b4bddf37a84.tar.bz2 |
ui/gl: Move GLImage into gl namespace.
BUG=461575
R=piman@chromium.org,sievers@chromium.org,
TBR=fsamuel@chromium.org
CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel
Review URL: https://codereview.chromium.org/1421903006
Cr-Commit-Position: refs/heads/master@{#356825}
Diffstat (limited to 'gpu/command_buffer/service/image_manager.h')
-rw-r--r-- | gpu/command_buffer/service/image_manager.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gpu/command_buffer/service/image_manager.h b/gpu/command_buffer/service/image_manager.h index 0a440f9e..8ec1e3f 100644 --- a/gpu/command_buffer/service/image_manager.h +++ b/gpu/command_buffer/service/image_manager.h @@ -10,7 +10,7 @@ #include "base/memory/ref_counted.h" #include "gpu/gpu_export.h" -namespace gfx { +namespace gl { class GLImage; } @@ -24,12 +24,12 @@ class GPU_EXPORT ImageManager { ~ImageManager(); void Destroy(bool have_context); - void AddImage(gfx::GLImage* image, int32 service_id); + void AddImage(gl::GLImage* image, int32 service_id); void RemoveImage(int32 service_id); - gfx::GLImage* LookupImage(int32 service_id); + gl::GLImage* LookupImage(int32 service_id); private: - typedef base::hash_map<int32, scoped_refptr<gfx::GLImage> > GLImageMap; + typedef base::hash_map<int32, scoped_refptr<gl::GLImage>> GLImageMap; GLImageMap images_; DISALLOW_COPY_AND_ASSIGN(ImageManager); |