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

Unified Diff: chromecast/net/net_util_cast.cc

Issue 1884453002: Revert of Convert //net and //chromecast to std::unordered_* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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') | net/android/network_change_notifier_android.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 5eebe7756933647ba18a423f18e520bf2bcc5de9..e99731cb4e430e7fdc5fed3bf4ae2246b4a87913 100644
--- a/chromecast/net/net_util_cast.cc
+++ b/chromecast/net/net_util_cast.cc
@@ -12,8 +12,8 @@
namespace chromecast {
-std::unordered_set<std::string> GetIgnoredInterfaces() {
- std::unordered_set<std::string> ignored_interfaces;
+base::hash_set<std::string> GetIgnoredInterfaces() {
+ base::hash_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') | net/android/network_change_notifier_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698