diff options
author | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-23 21:58:45 +0000 |
---|---|---|
committer | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-23 21:58:45 +0000 |
commit | 85ecd7e2a7efe7fd05d1803412bfe46d8b3bd9d0 (patch) | |
tree | 945304a53f7fe9aa4df18620e55cb6d067604ea7 /cloud_print | |
parent | e53a7f29591f8b3f03f97541b3b30422780b39a6 (diff) | |
download | chromium_src-85ecd7e2a7efe7fd05d1803412bfe46d8b3bd9d0.zip chromium_src-85ecd7e2a7efe7fd05d1803412bfe46d8b3bd9d0.tar.gz chromium_src-85ecd7e2a7efe7fd05d1803412bfe46d8b3bd9d0.tar.bz2 |
Update uses of Value in chromeos/, cloud_print/, components/, content/ to use the base:: namespace.
BUG=88666
TEST=no change
TBR=ben@chromium.org
Review URL: https://codereview.chromium.org/108603005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@242409 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cloud_print')
-rw-r--r-- | cloud_print/gcp20/prototype/cloud_print_requester.cc | 2 | ||||
-rw-r--r-- | cloud_print/gcp20/prototype/privet_http_server.cc | 6 | ||||
-rw-r--r-- | cloud_print/service/service_state.cc | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/cloud_print/gcp20/prototype/cloud_print_requester.cc b/cloud_print/gcp20/prototype/cloud_print_requester.cc index ade85efc..d46fdf4 100644 --- a/cloud_print/gcp20/prototype/cloud_print_requester.cc +++ b/cloud_print/gcp20/prototype/cloud_print_requester.cc @@ -78,7 +78,7 @@ GURL CreateUpdateUrl(const std::string& device_id) { std::string LocalSettingsToJson(const LocalSettings& settings) { base::DictionaryValue dictionary; - scoped_ptr<base::DictionaryValue> current(new DictionaryValue); + scoped_ptr<base::DictionaryValue> current(new base::DictionaryValue); // TODO(maksymb): Formalize text as constants. current->SetBoolean("local_discovery", settings.local_discovery); diff --git a/cloud_print/gcp20/prototype/privet_http_server.cc b/cloud_print/gcp20/prototype/privet_http_server.cc index d589657..9aa2835 100644 --- a/cloud_print/gcp20/prototype/privet_http_server.cc +++ b/cloud_print/gcp20/prototype/privet_http_server.cc @@ -302,7 +302,7 @@ scoped_ptr<base::DictionaryValue> PrivetHttpServer::ProcessCreateJob( *status_code = net::HTTP_OK; switch (result) { case LocalPrintJob::CREATE_SUCCESS: - response.reset(new DictionaryValue); + response.reset(new base::DictionaryValue); response->SetString("job_id", job_id); response->SetInteger("expires_in", expires_in); return response.Pass(); @@ -354,7 +354,7 @@ scoped_ptr<base::DictionaryValue> PrivetHttpServer::ProcessSubmitDoc( // Create response *status_code = net::HTTP_OK; - scoped_ptr<base::DictionaryValue> response(new DictionaryValue); + scoped_ptr<base::DictionaryValue> response(new base::DictionaryValue); switch (status) { case LocalPrintJob::SAVE_SUCCESS: response->SetString("job_id", job_id); @@ -422,7 +422,7 @@ scoped_ptr<base::DictionaryValue> PrivetHttpServer::ProcessRegister( !user.empty(); RegistrationErrorStatus status = REG_ERROR_INVALID_PARAMS; - scoped_ptr<base::DictionaryValue> response(new DictionaryValue); + scoped_ptr<base::DictionaryValue> response(new base::DictionaryValue); if (params_present) { response->SetString("action", action); diff --git a/cloud_print/service/service_state.cc b/cloud_print/service/service_state.cc index 1937ba2..01d315b 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_); |