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

Unified Diff: gpu/khronos_glcts_support/khronos_glcts_test.cc

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/ipc/gpu_command_buffer_traits.cc ('k') | gpu/perftests/measurements.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/khronos_glcts_support/khronos_glcts_test.cc
diff --git a/gpu/khronos_glcts_support/khronos_glcts_test.cc b/gpu/khronos_glcts_support/khronos_glcts_test.cc
index 287b5d02587831d55677315f497e30203e4c9b4d..d75e82429c55a86fceb2d0ae85f036e0191e7815 100644
--- a/gpu/khronos_glcts_support/khronos_glcts_test.cc
+++ b/gpu/khronos_glcts_support/khronos_glcts_test.cc
@@ -4,6 +4,9 @@
#include "gpu/khronos_glcts_support/khronos_glcts_test.h"
+#include <stddef.h>
+#include <stdint.h>
+
#include <string>
#include "base/at_exit.h"
@@ -50,7 +53,7 @@ bool RunKhronosGLCTSTest(const char* test_name) {
const ::testing::TestInfo* const test_info =
::testing::UnitTest::GetInstance()->current_test_info();
- int32 expectation =
+ int32_t expectation =
test_expectations.GetTestExpectation(test_info->name(), bot_config);
if (expectation != gpu::GPUTestExpectationsParser::kGpuTestPass) {
LOG(WARNING) << "Test " << test_info->name() << " is bypassed";
« no previous file with comments | « gpu/ipc/gpu_command_buffer_traits.cc ('k') | gpu/perftests/measurements.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698