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

Unified Diff: chrome/test/logging/win/mof_data_parser.h

Issue 1548153002: Switch to standard integer types in chrome/. (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 | « chrome/test/logging/win/log_file_reader.cc ('k') | chrome/test/logging/win/mof_data_parser.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/logging/win/mof_data_parser.h
diff --git a/chrome/test/logging/win/mof_data_parser.h b/chrome/test/logging/win/mof_data_parser.h
index 4a58361ea972ad4d852e8caabb6ae3a6d8bc7dcb..1198709f825a2bfe8559e2dc196bfe5aa104ffc5 100644
--- a/chrome/test/logging/win/mof_data_parser.h
+++ b/chrome/test/logging/win/mof_data_parser.h
@@ -5,12 +5,12 @@
#ifndef CHROME_TEST_LOGGING_WIN_MOF_DATA_PARSER_H_
#define CHROME_TEST_LOGGING_WIN_MOF_DATA_PARSER_H_
-#include <stddef.h>
#include <windows.h>
-#include <wmistr.h>
#include <evntrace.h>
+#include <stddef.h>
+#include <stdint.h>
+#include <wmistr.h>
-#include "base/basictypes.h"
#include "base/strings/string_piece.h"
namespace logging_win {
@@ -81,8 +81,8 @@ class MofDataParser {
return true;
}
- const uint8* scan_;
- uint32 length_;
+ const uint8_t* scan_;
+ uint32_t length_;
};
} // namespace logging_win
« no previous file with comments | « chrome/test/logging/win/log_file_reader.cc ('k') | chrome/test/logging/win/mof_data_parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698