| 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;
|
|
|