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

Unified Diff: gpu/command_buffer/client/gles2_implementation_unittest_autogen.h

Issue 1542513002: Switch to standard integer types in gpu/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix 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 | « gpu/command_buffer/client/gles2_implementation_unittest.cc ('k') | gpu/command_buffer/client/gpu_control.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/command_buffer/client/gles2_implementation_unittest_autogen.h
diff --git a/gpu/command_buffer/client/gles2_implementation_unittest_autogen.h b/gpu/command_buffer/client/gles2_implementation_unittest_autogen.h
index e8efce098d80da7f146afa67a0d627e94fcdaf04..9deba0aa010d8b314a2f06cc97f0734aeb56a17d 100644
--- a/gpu/command_buffer/client/gles2_implementation_unittest_autogen.h
+++ b/gpu/command_buffer/client/gles2_implementation_unittest_autogen.h
@@ -1521,7 +1521,7 @@ TEST_F(GLES2ImplementationTest, Scissor) {
}
TEST_F(GLES2ImplementationTest, ShaderSource) {
- const uint32 kBucketId = GLES2Implementation::kResultBucketId;
+ const uint32_t kBucketId = GLES2Implementation::kResultBucketId;
const char* kString1 = "happy";
const char* kString2 = "ending";
const size_t kString1Size = ::strlen(kString1) + 1;
@@ -1569,7 +1569,7 @@ TEST_F(GLES2ImplementationTest, ShaderSource) {
}
TEST_F(GLES2ImplementationTest, ShaderSourceWithLength) {
- const uint32 kBucketId = GLES2Implementation::kResultBucketId;
+ const uint32_t kBucketId = GLES2Implementation::kResultBucketId;
const char* kString = "foobar******";
const size_t kStringSize = 6; // We only need "foobar".
const size_t kHeaderSize = sizeof(GLint) * 2;
@@ -1739,7 +1739,7 @@ TEST_F(GLES2ImplementationTest, TexStorage3D) {
}
TEST_F(GLES2ImplementationTest, TransformFeedbackVaryings) {
- const uint32 kBucketId = GLES2Implementation::kResultBucketId;
+ const uint32_t kBucketId = GLES2Implementation::kResultBucketId;
const char* kString1 = "happy";
const char* kString2 = "ending";
const size_t kString1Size = ::strlen(kString1) + 1;
« no previous file with comments | « gpu/command_buffer/client/gles2_implementation_unittest.cc ('k') | gpu/command_buffer/client/gpu_control.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698