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

Unified Diff: chrome/browser/chromeos/system_logs/debug_log_writer.cc

Issue 1547093002: Switch to standard integer types in chrome/browser/chromeos/. (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
Index: chrome/browser/chromeos/system_logs/debug_log_writer.cc
diff --git a/chrome/browser/chromeos/system_logs/debug_log_writer.cc b/chrome/browser/chromeos/system_logs/debug_log_writer.cc
index 032b1ebf70cc31a0c100309451438c8fd4fbabc6..92ff9b0f91e1dc3d006139ea29db7b610176dae8 100644
--- a/chrome/browser/chromeos/system_logs/debug_log_writer.cc
+++ b/chrome/browser/chromeos/system_logs/debug_log_writer.cc
@@ -4,6 +4,8 @@
#include "chrome/browser/chromeos/system_logs/debug_log_writer.h"
+#include <stdint.h>
+
#include "base/bind.h"
#include "base/bind_helpers.h"
#include "base/callback.h"
@@ -203,7 +205,7 @@ void OnSystemLogsAdded(const DebugLogWriter::StoreLogsCallback& callback,
void IntializeLogFile(base::File* file,
const base::FilePath& file_path,
- uint32 flags) {
+ uint32_t flags) {
base::FilePath dir = file_path.DirName();
if (!base::DirectoryExists(dir)) {
if (!base::CreateDirectory(dir)) {
« no previous file with comments | « chrome/browser/chromeos/system_logs/debug_log_writer.h ('k') | chrome/browser/chromeos/system_logs/device_event_log_source.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698