Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2399)

Unified Diff: chrome/browser/sync_file_system/drive_backend/sync_worker.h

Issue 2829163004: Remove uses of base::hash_map from //chrome (Closed)
Patch Set: Downloads back Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698