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

Unified Diff: chromeos/network/network_ui_data.cc

Issue 17034006: Add base namespace to more values in sync and elsewhere. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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.cc ('k') | chromeos/network/onc/onc_merger.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/network/network_ui_data.cc
diff --git a/chromeos/network/network_ui_data.cc b/chromeos/network/network_ui_data.cc
index 2eeac35a137acdd62112458e4ecb884246edc96b..b63bb8153786cdb779ab5a5d4eb89b107a5b80ce 100644
--- a/chromeos/network/network_ui_data.cc
+++ b/chromeos/network/network_ui_data.cc
@@ -83,7 +83,7 @@ NetworkUIData& NetworkUIData::operator=(const NetworkUIData& other) {
return *this;
}
-NetworkUIData::NetworkUIData(const DictionaryValue& dict) {
+NetworkUIData::NetworkUIData(const base::DictionaryValue& dict) {
std::string source;
dict.GetString(kKeyONCSource, &source);
onc_source_ = StringToEnum(kONCSourceTable, source, onc::ONC_SOURCE_NONE);
@@ -94,7 +94,7 @@ NetworkUIData::NetworkUIData(const DictionaryValue& dict) {
StringToEnum(kClientCertTable, type_string, CLIENT_CERT_TYPE_NONE);
if (certificate_type_ == CLIENT_CERT_TYPE_PATTERN) {
- const DictionaryValue* cert_dict = NULL;
+ const base::DictionaryValue* cert_dict = NULL;
dict.GetDictionary(kKeyCertificatePattern, &cert_dict);
if (cert_dict)
certificate_pattern_.CopyFromDictionary(*cert_dict);
@@ -104,7 +104,7 @@ NetworkUIData::NetworkUIData(const DictionaryValue& dict) {
}
}
- const DictionaryValue* user_settings = NULL;
+ const base::DictionaryValue* user_settings = NULL;
if (dict.GetDictionary(kKeyUserSettings, &user_settings))
user_settings_.reset(user_settings->DeepCopy());
}
« no previous file with comments | « chromeos/network/network_state.cc ('k') | chromeos/network/onc/onc_merger.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698