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

Unified Diff: cc/resources/resource_provider_unittest.cc

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/resources/resource_provider.cc ('k') | cc/resources/resource_update_controller_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/resources/resource_provider_unittest.cc
diff --git a/cc/resources/resource_provider_unittest.cc b/cc/resources/resource_provider_unittest.cc
index 8b2b01bd6fe9625141db38d99d038eed1f2cf060..fdf6ee1e848859048a10c57428e452c00dcfa342 100644
--- a/cc/resources/resource_provider_unittest.cc
+++ b/cc/resources/resource_provider_unittest.cc
@@ -34,12 +34,12 @@ using testing::Return;
using testing::SetArgPointee;
using testing::StrictMock;
using testing::_;
-using WebKit::WGC3Dbyte;
-using WebKit::WGC3Denum;
-using WebKit::WGC3Dint;
-using WebKit::WGC3Dsizei;
-using WebKit::WGC3Duint;
-using WebKit::WebGLId;
+using blink::WGC3Dbyte;
+using blink::WGC3Denum;
+using blink::WGC3Dint;
+using blink::WGC3Dsizei;
+using blink::WGC3Duint;
+using blink::WebGLId;
namespace cc {
namespace {
@@ -95,11 +95,11 @@ class TextureStateTrackingContext : public TestWebGraphicsContext3D {
// Force all textures to be consecutive numbers starting at "1",
// so we easily can test for them.
- virtual WebKit::WebGLId NextTextureId() OVERRIDE {
+ virtual blink::WebGLId NextTextureId() OVERRIDE {
base::AutoLock lock(namespace_->lock);
return namespace_->next_texture_id++;
}
- virtual void RetireTextureId(WebKit::WebGLId) OVERRIDE {
+ virtual void RetireTextureId(blink::WebGLId) OVERRIDE {
}
};
@@ -2944,13 +2944,13 @@ INSTANTIATE_TEST_CASE_P(
class TextureIdAllocationTrackingContext : public TestWebGraphicsContext3D {
public:
- virtual WebKit::WebGLId NextTextureId() OVERRIDE {
+ virtual blink::WebGLId NextTextureId() OVERRIDE {
base::AutoLock lock(namespace_->lock);
return namespace_->next_texture_id++;
}
- virtual void RetireTextureId(WebKit::WebGLId) OVERRIDE {
+ virtual void RetireTextureId(blink::WebGLId) OVERRIDE {
}
- WebKit::WebGLId PeekTextureId() {
+ blink::WebGLId PeekTextureId() {
base::AutoLock lock(namespace_->lock);
return namespace_->next_texture_id;
}
« no previous file with comments | « cc/resources/resource_provider.cc ('k') | cc/resources/resource_update_controller_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698