| Index: components/omnibox/browser/in_memory_url_index_types.h
|
| diff --git a/components/omnibox/browser/in_memory_url_index_types.h b/components/omnibox/browser/in_memory_url_index_types.h
|
| index f35fd9e0bbec21aaf92f514340c9a0143bea4674..089559c44557caa604754fc7d8454c8007f4f2fb 100644
|
| --- a/components/omnibox/browser/in_memory_url_index_types.h
|
| +++ b/components/omnibox/browser/in_memory_url_index_types.h
|
| @@ -9,7 +9,6 @@
|
| #include <set>
|
| #include <vector>
|
|
|
| -#include "base/containers/hash_tables.h"
|
| #include "base/strings/string16.h"
|
| #include "components/history/core/browser/history_types.h"
|
| #include "url/gurl.h"
|
| @@ -154,7 +153,7 @@
|
| };
|
|
|
| // A map from history_id to the history's URL and title.
|
| -typedef base::hash_map<HistoryID, HistoryInfoMapValue> HistoryInfoMap;
|
| +typedef std::map<HistoryID, HistoryInfoMapValue> HistoryInfoMap;
|
|
|
| // A map from history_id to URL and page title word start metrics.
|
| struct RowWordStarts {
|
|
|