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

Unified Diff: cc/test/ordered_texture_map.h

Issue 61553006: Rename WebKit namespace to blink (part 5) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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
« no previous file with comments | « cc/test/layer_tree_pixel_test.cc ('k') | cc/test/ordered_texture_map.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/ordered_texture_map.h
diff --git a/cc/test/ordered_texture_map.h b/cc/test/ordered_texture_map.h
index 852e86b1f06aa4909eeedc8249ca197c9c405505..b82659532bee6a11f649a4daf4a95997e84faf53 100644
--- a/cc/test/ordered_texture_map.h
+++ b/cc/test/ordered_texture_map.h
@@ -20,21 +20,21 @@ class OrderedTextureMap {
OrderedTextureMap();
~OrderedTextureMap();
- void Append(WebKit::WebGLId id, scoped_refptr<TestTexture> texture);
- void Replace(WebKit::WebGLId id, scoped_refptr<TestTexture> texture);
- void Remove(WebKit::WebGLId id);
+ void Append(blink::WebGLId id, scoped_refptr<TestTexture> texture);
+ void Replace(blink::WebGLId id, scoped_refptr<TestTexture> texture);
+ void Remove(blink::WebGLId id);
size_t Size();
- bool ContainsId(WebKit::WebGLId id);
+ bool ContainsId(blink::WebGLId id);
- scoped_refptr<TestTexture> TextureForId(WebKit::WebGLId id);
- WebKit::WebGLId IdAt(size_t index);
+ scoped_refptr<TestTexture> TextureForId(blink::WebGLId id);
+ blink::WebGLId IdAt(size_t index);
private:
- typedef base::hash_map<WebKit::WebGLId, scoped_refptr<TestTexture> >
+ typedef base::hash_map<blink::WebGLId, scoped_refptr<TestTexture> >
TextureMap;
- typedef std::vector<WebKit::WebGLId> TextureList;
+ typedef std::vector<blink::WebGLId> TextureList;
TextureMap textures_;
TextureList ordered_textures_;
« no previous file with comments | « cc/test/layer_tree_pixel_test.cc ('k') | cc/test/ordered_texture_map.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698