summaryrefslogtreecommitdiffstats
path: root/cc/test/ordered_texture_map.h
diff options
context:
space:
mode:
authorabarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-11-07 06:58:20 +0000
committerabarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-11-07 06:58:20 +0000
commitc32e27083ff530651d7e03cff7e7bc05bac55359 (patch)
treeca25d186ec5e30b1c908369fc6d2951bfb2a45f5 /cc/test/ordered_texture_map.h
parentbb2999f3c773c9a04201b88b823f93c6de8b117f (diff)
downloadchromium_src-c32e27083ff530651d7e03cff7e7bc05bac55359.zip
chromium_src-c32e27083ff530651d7e03cff7e7bc05bac55359.tar.gz
chromium_src-c32e27083ff530651d7e03cff7e7bc05bac55359.tar.bz2
Rename WebKit namespace to blink (part 5)
This CL updates all references to the WebKit namespace outside of content, chrome, and components. TBR=darin@chromium.org BUG=295096 Review URL: https://codereview.chromium.org/61553006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@233518 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/test/ordered_texture_map.h')
-rw-r--r--cc/test/ordered_texture_map.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/cc/test/ordered_texture_map.h b/cc/test/ordered_texture_map.h
index 852e86b..b826595 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_;