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

Unified Diff: chrome/test/logging/win/log_file_reader.cc

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_printer.cc ('k') | chrome/test/logging/win/mof_data_parser.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/logging/win/log_file_reader.cc
diff --git a/chrome/test/logging/win/log_file_reader.cc b/chrome/test/logging/win/log_file_reader.cc
index a2181af4cfef5a9a35d0fca9d15a9a9fe69e74a1..3a6d171abee641543489449272d35a93aa337265 100644
--- a/chrome/test/logging/win/log_file_reader.cc
+++ b/chrome/test/logging/win/log_file_reader.cc
@@ -4,9 +4,12 @@
#include "chrome/test/logging/win/log_file_reader.h"
+#include <stdint.h>
+
#include "base/files/file_path.h"
#include "base/lazy_instance.h"
#include "base/logging_win.h"
+#include "base/macros.h"
#include "base/synchronization/lock.h"
#include "base/win/event_trace_consumer.h"
#include "chrome/test/logging/win/mof_data_parser.h"
@@ -18,7 +21,7 @@ namespace {
// TODO(grt) This reverses a mapping produced by base/logging_win.cc's
// LogEventProvider::LogMessage. LogEventProvider should expose a way to map an
// event level back to a log severity.
-logging::LogSeverity EventLevelToSeverity(uint8 level) {
+logging::LogSeverity EventLevelToSeverity(uint8_t level) {
switch (level) {
case TRACE_LEVEL_NONE:
NOTREACHED();
« no previous file with comments | « chrome/test/logging/win/log_file_printer.cc ('k') | chrome/test/logging/win/mof_data_parser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698