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

Unified Diff: components/safe_browsing_db/v4_get_hash_protocol_manager_unittest.cc

Issue 2345573002: Each DatabaseManager gets to decide which stores to track (Closed)
Patch Set: Each DBmanager defines stores to look. base::hash_set -> std::unorderd_set. StoreToFileNameMap -> S… Created 4 years, 3 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: components/safe_browsing_db/v4_get_hash_protocol_manager_unittest.cc
diff --git a/components/safe_browsing_db/v4_get_hash_protocol_manager_unittest.cc b/components/safe_browsing_db/v4_get_hash_protocol_manager_unittest.cc
index faf1916d01e6cc24633dfa76be3f551329d2b8b0..0c6b2a15855ad292908f030128cfb437ed9311bc 100644
--- a/components/safe_browsing_db/v4_get_hash_protocol_manager_unittest.cc
+++ b/components/safe_browsing_db/v4_get_hash_protocol_manager_unittest.cc
@@ -79,7 +79,7 @@ class V4GetHashProtocolManagerTest : public PlatformTest {
config.client_name = kClient;
config.version = kAppVer;
config.key_param = kKeyParam;
- base::hash_set<UpdateListIdentifier> stores_to_look(
+ std::unordered_set<UpdateListIdentifier> stores_to_look(
{GetUrlMalwareId(), GetChromeUrlApiId()});
return V4GetHashProtocolManager::Create(NULL, stores_to_look, config);
}

Powered by Google App Engine
This is Rietveld 408576698