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

Unified Diff: chrome/browser/automation/automation_provider_observers_chromeos.cc

Issue 106433007: Update some uses of Value in chrome/browser to use the base:: namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix 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: chrome/browser/automation/automation_provider_observers_chromeos.cc
diff --git a/chrome/browser/automation/automation_provider_observers_chromeos.cc b/chrome/browser/automation/automation_provider_observers_chromeos.cc
index 7ca37982b3af10ab467ac17f6bfd259063c33550..35e3fb86cbe4e69ccd3ddf9fcf065a30a599ede6 100644
--- a/chrome/browser/automation/automation_provider_observers_chromeos.cc
+++ b/chrome/browser/automation/automation_provider_observers_chromeos.cc
@@ -66,7 +66,7 @@ LoginObserver::~LoginObserver() {
}
void LoginObserver::OnLoginFailure(const chromeos::LoginFailure& error) {
- scoped_ptr<DictionaryValue> return_value(new DictionaryValue);
+ scoped_ptr<base::DictionaryValue> return_value(new base::DictionaryValue);
return_value->SetString("error_string", error.GetErrorString());
AutomationJSONReply(automation_.get(), reply_message_.release())
.SendSuccess(return_value.get());
@@ -119,7 +119,7 @@ void WizardControllerObserver::Observe(
}
void WizardControllerObserver::SendReply(const std::string& screen_name) {
- scoped_ptr<DictionaryValue> return_value(new DictionaryValue);
+ scoped_ptr<base::DictionaryValue> return_value(new base::DictionaryValue);
return_value->SetString("next_screen", screen_name);
AutomationJSONReply(automation_.get(), reply_message_.release())
.SendSuccess(return_value.get());
@@ -170,7 +170,7 @@ ScreenUnlockObserver::~ScreenUnlockObserver() {
void ScreenUnlockObserver::OnLoginFailure(const chromeos::LoginFailure& error) {
if (automation_) {
- scoped_ptr<DictionaryValue> return_value(new DictionaryValue);
+ scoped_ptr<base::DictionaryValue> return_value(new base::DictionaryValue);
return_value->SetString("error_string", error.GetErrorString());
AutomationJSONReply(automation_.get(), reply_message_.release())
.SendSuccess(return_value.get());
« no previous file with comments | « chrome/browser/automation/automation_provider_observers.cc ('k') | chrome/browser/automation/automation_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698