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

Unified Diff: tools/ipc_fuzzer/fuzzer/generator.cc

Issue 1549203002: Switch to standard integer types in tools/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | « tools/ipc_fuzzer/fuzzer/generator.h ('k') | tools/ipc_fuzzer/fuzzer/mutator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/ipc_fuzzer/fuzzer/generator.cc
diff --git a/tools/ipc_fuzzer/fuzzer/generator.cc b/tools/ipc_fuzzer/fuzzer/generator.cc
index 52c4afb6dc5e0e0d4f519d4a868a067f77875429..bcf827c7af5ab4fa07436044082f2aba88fb7dcb 100644
--- a/tools/ipc_fuzzer/fuzzer/generator.cc
+++ b/tools/ipc_fuzzer/fuzzer/generator.cc
@@ -4,7 +4,6 @@
#include <string>
-#include "base/basictypes.h"
#include "base/strings/string_util.h"
#include "tools/ipc_fuzzer/fuzzer/generator.h"
#include "tools/ipc_fuzzer/fuzzer/rand_util.h"
@@ -70,20 +69,20 @@ void Generator::FuzzWChar(wchar_t* value) {
GenerateIntegralType<wchar_t>(value);
}
-void Generator::FuzzUInt16(uint16* value) {
- GenerateIntegralType<uint16>(value);
+void Generator::FuzzUInt16(uint16_t* value) {
+ GenerateIntegralType<uint16_t>(value);
}
-void Generator::FuzzUInt32(uint32* value) {
- GenerateIntegralType<uint32>(value);
+void Generator::FuzzUInt32(uint32_t* value) {
+ GenerateIntegralType<uint32_t>(value);
}
-void Generator::FuzzInt64(int64* value) {
- GenerateIntegralType<int64>(value);
+void Generator::FuzzInt64(int64_t* value) {
+ GenerateIntegralType<int64_t>(value);
}
-void Generator::FuzzUInt64(uint64* value) {
- GenerateIntegralType<uint64>(value);
+void Generator::FuzzUInt64(uint64_t* value) {
+ GenerateIntegralType<uint64_t>(value);
}
void Generator::FuzzFloat(float* value) {
« no previous file with comments | « tools/ipc_fuzzer/fuzzer/generator.h ('k') | tools/ipc_fuzzer/fuzzer/mutator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698