Index: chrome/browser/download/chrome_download_manager_delegate.h |
diff --git a/chrome/browser/download/chrome_download_manager_delegate.h b/chrome/browser/download/chrome_download_manager_delegate.h |
index a03a227c757472cb4748b707f712c5c0c57ea1bc..1efcfbe7bac13e6dd64415d5de9c8402d8cfb23e 100644 |
--- a/chrome/browser/download/chrome_download_manager_delegate.h |
+++ b/chrome/browser/download/chrome_download_manager_delegate.h |
@@ -12,7 +12,7 @@ |
#include <vector> |
#include "base/compiler_specific.h" |
-#include "base/containers/hash_tables.h" |
+#include "base/containers/flat_map.h" |
#include "base/gtest_prod_util.h" |
#include "base/macros.h" |
#include "base/memory/weak_ptr.h" |
@@ -170,8 +170,9 @@ class ChromeDownloadManagerDelegate |
#if BUILDFLAG(ENABLE_EXTENSIONS) |
// Maps from pending extension installations to DownloadItem IDs. |
- typedef base::hash_map<extensions::CrxInstaller*, |
- content::DownloadOpenDelayedCallback> CrxInstallerMap; |
+ typedef base::flat_map<extensions::CrxInstaller*, |
+ content::DownloadOpenDelayedCallback> |
+ CrxInstallerMap; |
CrxInstallerMap crx_installers_; |
#endif |