Chromium Code Reviews| 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..02aab69905169923d942897039b41af9ed32dee0 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 auto& netif : base::SplitString( |
|
sky
2015/08/11 21:48:51
nit: auto->std::string as it isn't much longer and
|
| + netifs_to_ignore_str, ",", base::TRIM_WHITESPACE, |
| + base::SPLIT_WANT_ALL)) |
| ignored_interfaces.insert(netif); |
| return ignored_interfaces; |