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

Unified Diff: tools/ipc_fuzzer/message_lib/message_file_writer.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/message_lib/message_file_reader.cc ('k') | tools/ipc_fuzzer/message_lib/message_names.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/ipc_fuzzer/message_lib/message_file_writer.cc
diff --git a/tools/ipc_fuzzer/message_lib/message_file_writer.cc b/tools/ipc_fuzzer/message_lib/message_file_writer.cc
index 2554b12f513624c1a6ed36245cd97f0998e65fb4..6511c279e6a860428141defc4d3ad8dfc662037e 100644
--- a/tools/ipc_fuzzer/message_lib/message_file_writer.cc
+++ b/tools/ipc_fuzzer/message_lib/message_file_writer.cc
@@ -3,10 +3,13 @@
// found in the LICENSE file.
#include <limits.h>
+#include <stddef.h>
+#include <stdint.h>
#include <set>
#include "base/files/file.h"
#include "base/logging.h"
+#include "base/macros.h"
#include "tools/ipc_fuzzer/message_lib/message_file.h"
#include "tools/ipc_fuzzer/message_lib/message_file_format.h"
#include "tools/ipc_fuzzer/message_lib/message_names.h"
@@ -41,7 +44,7 @@ class Writer {
// String table contains the actual message names.
bool WriteStringTable();
- typedef std::set<uint32> TypesSet;
+ typedef std::set<uint32_t> TypesSet;
base::FilePath path_;
base::File file_;
const MessageVector* messages_;
« no previous file with comments | « tools/ipc_fuzzer/message_lib/message_file_reader.cc ('k') | tools/ipc_fuzzer/message_lib/message_names.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698