diff options
Diffstat (limited to 'chrome/browser/safe_browsing/threat_details_cache.cc')
| -rw-r--r-- | chrome/browser/safe_browsing/threat_details_cache.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/browser/safe_browsing/threat_details_cache.cc b/chrome/browser/safe_browsing/threat_details_cache.cc index 9f170cd..4782bde 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 { |
