Index: cc/test/test_texture.h |
diff --git a/cc/test/test_texture.h b/cc/test/test_texture.h |
index 71015c8318116db7e1ce9159c3e2cd839fd97252..f5070e179176f86a4ec10ed2fc09783aa00da52e 100644 |
--- a/cc/test/test_texture.h |
+++ b/cc/test/test_texture.h |
@@ -9,7 +9,7 @@ |
#include "base/memory/ref_counted.h" |
#include "base/memory/scoped_ptr.h" |
#include "cc/resources/resource_format.h" |
-#include "third_party/WebKit/public/platform/WebGraphicsContext3D.h" |
+#include "third_party/khronos/GLES2/gl2.h" |
#include "ui/gfx/size.h" |
namespace cc { |
@@ -20,13 +20,13 @@ struct TestTexture : public base::RefCounted<TestTexture> { |
TestTexture(); |
void Reallocate(gfx::Size size, ResourceFormat format); |
- bool IsValidParameter(blink::WGC3Denum pname); |
+ bool IsValidParameter(GLenum pname); |
gfx::Size size; |
ResourceFormat format; |
scoped_ptr<uint8_t[]> data; |
- typedef base::hash_map<blink::WGC3Denum, blink::WGC3Dint> |
+ typedef base::hash_map<GLenum, GLint> |
TextureParametersMap; |
TextureParametersMap params; |