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

Unified Diff: components/wifi/wifi_service.cc

Issue 64683014: Mac OS X-specific implementation of Networking Private API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Made networkingPrivateApi available on OS X. Created 7 years, 1 month 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 | « components/wifi/wifi_service.h ('k') | components/wifi/wifi_service_mac.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/wifi/wifi_service.cc
diff --git a/components/wifi/wifi_service.cc b/components/wifi/wifi_service.cc
index d54c11fba2c46311b0917ea57e7490721a9a9289..786c58eb33f1ac0f844d491c6471c810f31ca674 100644
--- a/components/wifi/wifi_service.cc
+++ b/components/wifi/wifi_service.cc
@@ -39,8 +39,8 @@ scoped_ptr<base::DictionaryValue> WiFiService::NetworkProperties::ToValue(
if (frequency != WiFiService::kFrequencyUnknown)
wifi->SetInteger(onc::wifi::kFrequency, frequency);
scoped_ptr<base::ListValue> frequency_list(new base::ListValue());
- for (FrequencyList::const_iterator it = this->frequency_list.begin();
- it != this->frequency_list.end();
+ for (FrequencySet::const_iterator it = this->frequency_set.begin();
+ it != this->frequency_set.end();
++it) {
frequency_list->AppendInteger(*it);
}
« no previous file with comments | « components/wifi/wifi_service.h ('k') | components/wifi/wifi_service_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698