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; |