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

Unified Diff: chromecast/net/net_util_cast.cc

Issue 1897033002: Reland 'Convert //net and //chromecast to std::unordered_*' (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix TestDownloadRequestHandler Created 4 years, 8 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
« no previous file with comments | « chromecast/net/net_util_cast.h ('k') | content/public/test/test_download_request_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/net/net_util_cast.cc
diff --git a/chromecast/net/net_util_cast.cc b/chromecast/net/net_util_cast.cc
index e99731cb4e430e7fdc5fed3bf4ae2246b4a87913..5eebe7756933647ba18a423f18e520bf2bcc5de9 100644
--- a/chromecast/net/net_util_cast.cc
+++ b/chromecast/net/net_util_cast.cc
@@ -12,8 +12,8 @@
namespace chromecast {
-base::hash_set<std::string> GetIgnoredInterfaces() {
- base::hash_set<std::string> ignored_interfaces;
+std::unordered_set<std::string> GetIgnoredInterfaces() {
+ std::unordered_set<std::string> ignored_interfaces;
std::unique_ptr<CastSysInfo> sys_info = CreateSysInfo();
if (!sys_info->GetApInterface().empty())
ignored_interfaces.insert(sys_info->GetApInterface());
« no previous file with comments | « chromecast/net/net_util_cast.h ('k') | content/public/test/test_download_request_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698