Index: chrome/renderer/safe_browsing/phishing_classifier.h |
diff --git a/chrome/renderer/safe_browsing/phishing_classifier.h b/chrome/renderer/safe_browsing/phishing_classifier.h |
index 268375384cf6726e6045dca573335b297cdb2bf9..0e3ed3f5390b8e9320e3113ccf5dc501cb7e57f7 100644 |
--- a/chrome/renderer/safe_browsing/phishing_classifier.h |
+++ b/chrome/renderer/safe_browsing/phishing_classifier.h |
@@ -20,8 +20,10 @@ |
#include <set> |
-#include "base/basictypes.h" |
+#include <stdint.h> |
+ |
#include "base/callback.h" |
+#include "base/macros.h" |
#include "base/memory/scoped_ptr.h" |
#include "base/memory/weak_ptr.h" |
#include "base/strings/string16.h" |
@@ -137,7 +139,7 @@ class PhishingClassifier { |
// State for any in-progress extraction. |
scoped_ptr<FeatureMap> features_; |
- scoped_ptr<std::set<uint32> > shingle_hashes_; |
+ scoped_ptr<std::set<uint32_t>> shingle_hashes_; |
const base::string16* page_text_; // owned by the caller |
DoneCallback done_callback_; |