| Index: chrome/browser/safe_browsing/prefix_set.h
|
| diff --git a/chrome/browser/safe_browsing/prefix_set.h b/chrome/browser/safe_browsing/prefix_set.h
|
| index a71ce3ba94dc232db57a1b1dce4389cbad0500a5..7fbf9b49af80ffd7b74e538b862a15e7312542ad 100644
|
| --- a/chrome/browser/safe_browsing/prefix_set.h
|
| +++ b/chrome/browser/safe_browsing/prefix_set.h
|
| @@ -49,6 +49,7 @@
|
| #ifndef CHROME_BROWSER_SAFE_BROWSING_PREFIX_SET_H_
|
| #define CHROME_BROWSER_SAFE_BROWSING_PREFIX_SET_H_
|
|
|
| +#include <utility>
|
| #include <vector>
|
|
|
| #include "base/gtest_prod_util.h"
|
| @@ -103,7 +104,7 @@ class PrefixSet {
|
| static const size_t kMaxRun = 100;
|
|
|
| // Helpers to make |index_| easier to deal with.
|
| - typedef std::pair<SBPrefix,uint32> IndexPair;
|
| + typedef std::pair<SBPrefix, uint32> IndexPair;
|
| typedef std::vector<IndexPair> IndexVector;
|
| static bool PrefixLess(const IndexPair& a, const IndexPair& b);
|
|
|
|
|