Index: content/common/gpu/client/gpu_context_tests.h |
diff --git a/content/common/gpu/client/gpu_context_tests.h b/content/common/gpu/client/gpu_context_tests.h |
index 895ce2592bd7737cb4c0fc33bd667e89ee8a33f8..a679e7282ee3ca8cdcd87a9f2068378672f883da 100644 |
--- a/content/common/gpu/client/gpu_context_tests.h |
+++ b/content/common/gpu/client/gpu_context_tests.h |
@@ -29,7 +29,7 @@ class SignalTest : public ContextTestBase { |
} |
// These tests should time out if the callback doesn't get called. |
- void TestSignalQuery(WebKit::WebGLId query) { |
+ void TestSignalQuery(blink::WebGLId query) { |
base::RunLoop run_loop; |
context_support_->SignalQuery( |
query, |
@@ -59,7 +59,7 @@ CONTEXT_TEST_F(SignalTest, BasicSignalQueryTest) { |
}; |
CONTEXT_TEST_F(SignalTest, SignalQueryUnboundTest) { |
- WebKit::WebGLId query = context_->createQueryEXT(); |
+ blink::WebGLId query = context_->createQueryEXT(); |
TestSignalQuery(query); |
context_->deleteQueryEXT(query); |
}; |