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

Unified Diff: chrome/browser/safe_browsing/threat_details_cache.cc

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/threat_details_cache.cc
diff --git a/chrome/browser/safe_browsing/threat_details_cache.cc b/chrome/browser/safe_browsing/threat_details_cache.cc
index 9f170cd1e287d991ed130a1d5bb0bf83ed0ee7c6..4782bdea6c64ed8c3cb3a76a7bcc26f855a543a0 100644
--- a/chrome/browser/safe_browsing/threat_details_cache.cc
+++ b/chrome/browser/safe_browsing/threat_details_cache.cc
@@ -6,6 +6,8 @@
#include "chrome/browser/safe_browsing/threat_details.h"
+#include <stdint.h>
+
#include "base/bind.h"
#include "base/lazy_instance.h"
#include "base/md5.h"
@@ -26,7 +28,7 @@ using content::BrowserThread;
// Only send small files for now, a better strategy would use the size
// of the whole report and the user's bandwidth.
-static const uint32 kMaxBodySizeBytes = 1024;
+static const uint32_t kMaxBodySizeBytes = 1024;
namespace safe_browsing {
« no previous file with comments | « chrome/browser/safe_browsing/threat_details.cc ('k') | chrome/browser/safe_browsing/threat_details_history.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698