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

Unified Diff: cc/trees/layer_tree_host_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/trees/layer_tree_host_impl_unittest.cc ('k') | cc/trees/layer_tree_host_unittest_context.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/trees/layer_tree_host_unittest.cc
diff --git a/cc/trees/layer_tree_host_unittest.cc b/cc/trees/layer_tree_host_unittest.cc
index 59bad2e0db5ae2b0d53f1aab4de30251a240bf69..58bb333033c08800a9e32e4a331bfca9aaaa99dd 100644
--- a/cc/trees/layer_tree_host_unittest.cc
+++ b/cc/trees/layer_tree_host_unittest.cc
@@ -2799,26 +2799,26 @@ class MockIOSurfaceWebGraphicsContext3D : public TestWebGraphicsContext3D {
test_capabilities_.texture_rectangle = true;
}
- virtual WebKit::WebGLId createTexture() OVERRIDE {
+ virtual blink::WebGLId createTexture() OVERRIDE {
return 1;
}
- MOCK_METHOD1(activeTexture, void(WebKit::WGC3Denum texture));
- MOCK_METHOD2(bindTexture, void(WebKit::WGC3Denum target,
- WebKit::WebGLId texture_id));
- MOCK_METHOD3(texParameteri, void(WebKit::WGC3Denum target,
- WebKit::WGC3Denum pname,
- WebKit::WGC3Dint param));
- MOCK_METHOD5(texImageIOSurface2DCHROMIUM, void(WebKit::WGC3Denum target,
- WebKit::WGC3Dint width,
- WebKit::WGC3Dint height,
- WebKit::WGC3Duint ioSurfaceId,
- WebKit::WGC3Duint plane));
- MOCK_METHOD4(drawElements, void(WebKit::WGC3Denum mode,
- WebKit::WGC3Dsizei count,
- WebKit::WGC3Denum type,
- WebKit::WGC3Dintptr offset));
- MOCK_METHOD1(deleteTexture, void(WebKit::WGC3Denum texture));
+ MOCK_METHOD1(activeTexture, void(blink::WGC3Denum texture));
+ MOCK_METHOD2(bindTexture, void(blink::WGC3Denum target,
+ blink::WebGLId texture_id));
+ MOCK_METHOD3(texParameteri, void(blink::WGC3Denum target,
+ blink::WGC3Denum pname,
+ blink::WGC3Dint param));
+ MOCK_METHOD5(texImageIOSurface2DCHROMIUM, void(blink::WGC3Denum target,
+ blink::WGC3Dint width,
+ blink::WGC3Dint height,
+ blink::WGC3Duint ioSurfaceId,
+ blink::WGC3Duint plane));
+ MOCK_METHOD4(drawElements, void(blink::WGC3Denum mode,
+ blink::WGC3Dsizei count,
+ blink::WGC3Denum type,
+ blink::WGC3Dintptr offset));
+ MOCK_METHOD1(deleteTexture, void(blink::WGC3Denum texture));
};
« no previous file with comments | « cc/trees/layer_tree_host_impl_unittest.cc ('k') | cc/trees/layer_tree_host_unittest_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698