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

Unified Diff: cc/test/test_texture.h

Issue 133023002: Remove unnecessary use of blink typedefs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 months 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/test/ordered_texture_map.cc ('k') | cc/test/test_texture.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « cc/test/ordered_texture_map.cc ('k') | cc/test/test_texture.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698