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

Unified Diff: chromeos/network/favorite_state.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/device_state.cc ('k') | chromeos/network/geolocation_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/network/favorite_state.cc
diff --git a/chromeos/network/favorite_state.cc b/chromeos/network/favorite_state.cc
index 96fc74f33b95ce08562e4d3b55025af7b807776a..66efe5511212e7dcf13c4b8e521c0446719d4a69 100644
--- a/chromeos/network/favorite_state.cc
+++ b/chromeos/network/favorite_state.cc
@@ -26,9 +26,9 @@ bool FavoriteState::PropertyChanged(const std::string& key,
const base::Value& value) {
if (ManagedStatePropertyChanged(key, value))
return true;
- if (key == flimflam::kProfileProperty) {
+ if (key == shill::kProfileProperty) {
return GetStringValue(key, value, &profile_path_);
- } else if (key == flimflam::kUIDataProperty) {
+ } else if (key == shill::kUIDataProperty) {
scoped_ptr<NetworkUIData> new_ui_data =
shill_property_util::GetUIDataFromValue(value);
if (!new_ui_data) {
@@ -37,7 +37,7 @@ bool FavoriteState::PropertyChanged(const std::string& key,
}
ui_data_ = *new_ui_data;
return true;
- } else if (key == flimflam::kGuidProperty) {
+ } else if (key == shill::kGuidProperty) {
return GetStringValue(key, value, &guid_);
}
return false;
« no previous file with comments | « chromeos/network/device_state.cc ('k') | chromeos/network/geolocation_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698