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

Unified Diff: net/base/network_interfaces_linux.cc

Issue 1869503003: Convert //net and //chromecast to std::unordered_* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix cast 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
Index: net/base/network_interfaces_linux.cc
diff --git a/net/base/network_interfaces_linux.cc b/net/base/network_interfaces_linux.cc
index 121e0e0284e17ae051ad42bd20ef814df03a9e2b..e3021093fe9573e3fcf70d5591bd1964e2e8b4db 100644
--- a/net/base/network_interfaces_linux.cc
+++ b/net/base/network_interfaces_linux.cc
@@ -113,7 +113,7 @@ std::string GetInterfaceSSID(const std::string& ifname) {
bool GetNetworkListImpl(
NetworkInterfaceList* networks,
int policy,
- const base::hash_set<int>& online_links,
+ const std::unordered_set<int>& online_links,
const internal::AddressTrackerLinux::AddressMap& address_map,
GetInterfaceNameFunction get_interface_name) {
std::map<int, std::string> ifnames;

Powered by Google App Engine
This is Rietveld 408576698