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

Unified Diff: chromeos/network/network_util.cc

Issue 24348002: Migrate DBus service constants from flimflam namespace to shill namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased to ToT Created 7 years, 3 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
« no previous file with comments | « chromeos/network/network_state_unittest.cc ('k') | chromeos/network/network_util_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/network/network_util.cc
diff --git a/chromeos/network/network_util.cc b/chromeos/network/network_util.cc
index 4b13a15c371d4e4268197535e4789260039b45c4..8b1ff441fa356d9c98f91ebd2f3f585f69e765ae 100644
--- a/chromeos/network/network_util.cc
+++ b/chromeos/network/network_util.cc
@@ -104,16 +104,16 @@ bool ParseCellularScanResults(
const DictionaryValue* dict = static_cast<const DictionaryValue*>(*it);
// If the network id property is not present then this network cannot be
// connected to so don't include it in the results.
- if (!dict->GetStringWithoutPathExpansion(flimflam::kNetworkIdProperty,
+ if (!dict->GetStringWithoutPathExpansion(shill::kNetworkIdProperty,
&scan_result.network_id))
continue;
- dict->GetStringWithoutPathExpansion(flimflam::kStatusProperty,
+ dict->GetStringWithoutPathExpansion(shill::kStatusProperty,
&scan_result.status);
- dict->GetStringWithoutPathExpansion(flimflam::kLongNameProperty,
+ dict->GetStringWithoutPathExpansion(shill::kLongNameProperty,
&scan_result.long_name);
- dict->GetStringWithoutPathExpansion(flimflam::kShortNameProperty,
+ dict->GetStringWithoutPathExpansion(shill::kShortNameProperty,
&scan_result.short_name);
- dict->GetStringWithoutPathExpansion(flimflam::kTechnologyProperty,
+ dict->GetStringWithoutPathExpansion(shill::kTechnologyProperty,
&scan_result.technology);
scan_results->push_back(scan_result);
}
« no previous file with comments | « chromeos/network/network_state_unittest.cc ('k') | chromeos/network/network_util_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698