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

Unified Diff: cloud_print/service/service_state.cc

Issue 108603005: Update uses of Value in chromeos/, cloud_print/, components/, content/ to use the base:: namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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: cloud_print/service/service_state.cc
diff --git a/cloud_print/service/service_state.cc b/cloud_print/service/service_state.cc
index 1937ba2caca6a7bdde46fa5bb3a2f309d238fe37..01d315b06f6a908cdd5df585d9b5db89d8f9e36f 100644
--- a/cloud_print/service/service_state.cc
+++ b/cloud_print/service/service_state.cc
@@ -135,9 +135,9 @@ bool ServiceState::IsValid() const {
}
std::string ServiceState::ToString() {
- scoped_ptr<base::DictionaryValue> services(new DictionaryValue());
+ scoped_ptr<base::DictionaryValue> services(new base::DictionaryValue());
- scoped_ptr<base::DictionaryValue> cloud_print(new DictionaryValue());
+ scoped_ptr<base::DictionaryValue> cloud_print(new base::DictionaryValue());
cloud_print->SetBoolean(kEnabledOptionName, true);
SetNotEmptyJsonString(cloud_print.get(), kEmailOptionName, email_);
« no previous file with comments | « cloud_print/gcp20/prototype/privet_http_server.cc ('k') | components/autofill/content/browser/wallet/full_wallet.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698