From b896c715dd14ec1f7ac800350b40eeb6de2ba868 Mon Sep 17 00:00:00 2001 From: avi Date: Fri, 25 Dec 2015 18:10:43 -0800 Subject: Switch to standard integer types in chrome/browser/, part 3 of 4. BUG=138542 TBR=thakis@chromium.org Review URL: https://codereview.chromium.org/1548133002 Cr-Commit-Position: refs/heads/master@{#366883} --- chrome/browser/safe_browsing/threat_details.cc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'chrome/browser/safe_browsing/threat_details.cc') diff --git a/chrome/browser/safe_browsing/threat_details.cc b/chrome/browser/safe_browsing/threat_details.cc index 433ccb2..ce8d22d 100644 --- a/chrome/browser/safe_browsing/threat_details.cc +++ b/chrome/browser/safe_browsing/threat_details.cc @@ -6,8 +6,12 @@ #include "chrome/browser/safe_browsing/threat_details.h" +#include +#include + #include "base/bind.h" #include "base/lazy_instance.h" +#include "base/macros.h" #include "chrome/browser/profiles/profile.h" #include "chrome/browser/safe_browsing/threat_details_cache.h" #include "chrome/browser/safe_browsing/threat_details_history.h" @@ -24,7 +28,7 @@ using content::NavigationEntry; using content::WebContents; // Keep in sync with KMaxNodes in renderer/safe_browsing/threat_dom_details -static const uint32 kMaxDomNodes = 500; +static const uint32_t kMaxDomNodes = 500; namespace safe_browsing { -- cgit v1.1