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

Unified Diff: cc/output/geometry_binding.h

Issue 1539203002: Switch to standard integer types in cc/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more includes Created 5 years 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/output/filter_operations_unittest.cc ('k') | cc/output/geometry_binding.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/output/geometry_binding.h
diff --git a/cc/output/geometry_binding.h b/cc/output/geometry_binding.h
index de7cfc90b62e416cc8c89c16276cffebd1c2338f..473421640f5d41c6cc7cd387b5603b86b87bc73b 100644
--- a/cc/output/geometry_binding.h
+++ b/cc/output/geometry_binding.h
@@ -5,7 +5,8 @@
#ifndef CC_OUTPUT_GEOMETRY_BINDING_H_
#define CC_OUTPUT_GEOMETRY_BINDING_H_
-#include "base/basictypes.h"
+#include <stdint.h>
+
#include "gpu/command_buffer/client/gles2_interface.h"
#include "third_party/khronos/GLES2/gl2.h"
#include "third_party/khronos/GLES2/gl2ext.h"
@@ -38,14 +39,14 @@ struct GeometryBindingQuad {
struct GeometryBindingQuadIndex {
GeometryBindingQuadIndex();
- GeometryBindingQuadIndex(uint16 index0,
- uint16 index1,
- uint16 index2,
- uint16 index3,
- uint16 index4,
- uint16 index5);
+ GeometryBindingQuadIndex(uint16_t index0,
+ uint16_t index1,
+ uint16_t index2,
+ uint16_t index3,
+ uint16_t index4,
+ uint16_t index5);
- uint16 data[6];
+ uint16_t data[6];
};
class DrawQuad;
« no previous file with comments | « cc/output/filter_operations_unittest.cc ('k') | cc/output/geometry_binding.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698