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

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: Address stevenjb's comment. Created 6 years, 11 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: components/wifi/wifi_service.cc
diff --git a/components/wifi/wifi_service.cc b/components/wifi/wifi_service.cc
index e56fc8197cbd364e5709085a241ef6b970492e0f..340a4b554fed3a04e96f0a538e2eaf1c9342d1d8 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);
}

Powered by Google App Engine
This is Rietveld 408576698