| Index: chrome/browser/sync_file_system/drive_backend/sync_worker.h
|
| diff --git a/chrome/browser/sync_file_system/drive_backend/sync_worker.h b/chrome/browser/sync_file_system/drive_backend/sync_worker.h
|
| index fa4d4bf262b45f5fc5d4e68f328baa83a5739270..b27575c879d76a5e24748f72062b67d1e073d480 100644
|
| --- a/chrome/browser/sync_file_system/drive_backend/sync_worker.h
|
| +++ b/chrome/browser/sync_file_system/drive_backend/sync_worker.h
|
| @@ -7,6 +7,7 @@
|
|
|
| #include <memory>
|
| #include <string>
|
| +#include <unordered_map>
|
|
|
| #include "base/files/file_path.h"
|
| #include "base/macros.h"
|
| @@ -110,7 +111,7 @@ class SyncWorker : public SyncWorkerInterface,
|
| APP_STATUS_UNINSTALLED,
|
| };
|
|
|
| - typedef base::hash_map<std::string, AppStatus> AppStatusMap;
|
| + using AppStatusMap = std::unordered_map<std::string, AppStatus>;
|
|
|
| void DoDisableApp(const std::string& app_id,
|
| const SyncStatusCallback& callback);
|
|
|