| Index: chromecast/net/net_util_cast.cc
|
| diff --git a/chromecast/net/net_util_cast.cc b/chromecast/net/net_util_cast.cc
|
| index 6e688316c8a46e3c290d6ecd6aef857f2a89fb51..f94fe64cb2bb8fb76e5d745e0f1e9c212304cc46 100644
|
| --- a/chromecast/net/net_util_cast.cc
|
| +++ b/chromecast/net/net_util_cast.cc
|
| @@ -22,9 +22,9 @@ base::hash_set<std::string> GetIgnoredInterfaces() {
|
| base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
|
| base::CommandLine::StringType netifs_to_ignore_str =
|
| command_line->GetSwitchValueNative(switches::kNetifsToIgnore);
|
| - base::CommandLine::StringVector netifs_to_ignore_vector;
|
| - base::SplitString(netifs_to_ignore_str, ',', &netifs_to_ignore_vector);
|
| - for (const auto& netif : netifs_to_ignore_vector)
|
| + for (const std::string& netif : base::SplitString(
|
| + netifs_to_ignore_str, ",", base::TRIM_WHITESPACE,
|
| + base::SPLIT_WANT_ALL))
|
| ignored_interfaces.insert(netif);
|
|
|
| return ignored_interfaces;
|
|
|