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

Unified Diff: chrome/browser/safe_browsing/download_feedback.h

Issue 1548133002: Switch to standard integer types in chrome/browser/, part 3 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
Index: chrome/browser/safe_browsing/download_feedback.h
diff --git a/chrome/browser/safe_browsing/download_feedback.h b/chrome/browser/safe_browsing/download_feedback.h
index 6473bdae03034aef037ec524886a750d48cc1f86..28fe064af56a108cfca1b9d431cbb66c9cc8eda0 100644
--- a/chrome/browser/safe_browsing/download_feedback.h
+++ b/chrome/browser/safe_browsing/download_feedback.h
@@ -5,6 +5,8 @@
#ifndef CHROME_BROWSER_SAFE_BROWSING_DOWNLOAD_FEEDBACK_H_
#define CHROME_BROWSER_SAFE_BROWSING_DOWNLOAD_FEEDBACK_H_
+#include <stdint.h>
+
#include <string>
#include "base/callback_forward.h"
@@ -37,7 +39,7 @@ class DownloadFeedback : public base::NonThreadSafe {
// The largest file size we support uploading.
// Note: changing this will affect the max size of
// SBDownloadFeedback.SizeSuccess and SizeFailure histograms.
- static const int64 kMaxUploadSize;
+ static const int64_t kMaxUploadSize;
// The URL where the browser sends download feedback requests.
static const char kSbFeedbackURL[];
« no previous file with comments | « chrome/browser/safe_browsing/client_side_model_loader_unittest.cc ('k') | chrome/browser/safe_browsing/download_feedback.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698