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

Unified Diff: components/feedback/feedback_uploader.cc

Issue 1546143002: Switch to standard integer types in components/, part 1 of 4. (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 | « components/feedback/feedback_uploader.h ('k') | components/feedback/feedback_uploader_chrome.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/feedback/feedback_uploader.cc
diff --git a/components/feedback/feedback_uploader.cc b/components/feedback/feedback_uploader.cc
index b79ece26d961ef258b546e8728419c208aafb740..e2781771699eab01385ac5205eb9ef87be6d6596 100644
--- a/components/feedback/feedback_uploader.cc
+++ b/components/feedback/feedback_uploader.cc
@@ -4,6 +4,8 @@
#include "components/feedback/feedback_uploader.h"
+#include <stdint.h>
+
#include "base/callback.h"
#include "base/command_line.h"
#include "base/files/file_path.h"
@@ -18,7 +20,7 @@ namespace {
const char kFeedbackPostUrl[] =
"https://www.google.com/tools/feedback/chrome/__submit";
-const int64 kRetryDelayMinutes = 60;
+const int64_t kRetryDelayMinutes = 60;
const base::FilePath::CharType kFeedbackReportPath[] =
FILE_PATH_LITERAL("Feedback Reports");
« no previous file with comments | « components/feedback/feedback_uploader.h ('k') | components/feedback/feedback_uploader_chrome.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698