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

Unified Diff: chrome/browser/chromeos/policy/system_log_uploader.h

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/policy/system_log_uploader.h
diff --git a/chrome/browser/chromeos/policy/system_log_uploader.h b/chrome/browser/chromeos/policy/system_log_uploader.h
index ead2eba392246a7747edfefffe2d60aa5a49bc9e..5a3d6243c12737285c12f1ce5d68f0f322f0ea77 100644
--- a/chrome/browser/chromeos/policy/system_log_uploader.h
+++ b/chrome/browser/chromeos/policy/system_log_uploader.h
@@ -5,6 +5,8 @@
#ifndef CHROME_BROWSER_CHROMEOS_POLICY_SYSTEM_LOG_UPLOADER_H_
#define CHROME_BROWSER_CHROMEOS_POLICY_SYSTEM_LOG_UPLOADER_H_
+#include <stdint.h>
+
#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "base/memory/ref_counted_memory.h"
@@ -30,8 +32,8 @@ class SystemLogUploader : public UploadJob::Delegate {
typedef std::vector<std::pair<std::string, std::string>> SystemLogs;
// Refresh constants.
- static const int64 kDefaultUploadDelayMs;
- static const int64 kErrorUploadDelayMs;
+ static const int64_t kDefaultUploadDelayMs;
+ static const int64_t kErrorUploadDelayMs;
// Http header constants to upload.
static const char* const kNameFieldTemplate;

Powered by Google App Engine
This is Rietveld 408576698