summaryrefslogtreecommitdiffstats
path: root/sync/syncable/directory_backing_store.cc
diff options
context:
space:
mode:
Diffstat (limited to 'sync/syncable/directory_backing_store.cc')
-rw-r--r--sync/syncable/directory_backing_store.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/sync/syncable/directory_backing_store.cc b/sync/syncable/directory_backing_store.cc
index 9272ae5..2ee31e9 100644
--- a/sync/syncable/directory_backing_store.cc
+++ b/sync/syncable/directory_backing_store.cc
@@ -8,6 +8,7 @@
#include <stdint.h>
#include <limits>
+#include <unordered_set>
#include "base/base64.h"
#include "base/logging.h"
@@ -1636,7 +1637,7 @@ bool DirectoryBackingStore::CreateShareInfoTableVersion71(
bool DirectoryBackingStore::VerifyReferenceIntegrity(
const Directory::MetahandlesMap* handles_map) {
TRACE_EVENT0("sync", "SyncDatabaseIntegrityCheck");
- typedef base::hash_set<std::string> IdsSet;
+ typedef std::unordered_set<std::string> IdsSet;
IdsSet ids_set;
bool is_ok = true;