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

Unified Diff: chrome/browser/chromeos/login/existing_user_controller.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
« no previous file with comments | « chrome/browser/chromeos/locale_change_guard.cc ('k') | chrome/browser/chromeos/login/login_display_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/login/existing_user_controller.cc
diff --git a/chrome/browser/chromeos/login/existing_user_controller.cc b/chrome/browser/chromeos/login/existing_user_controller.cc
index ea962fa46f180e1c35d92917ba52d65eadcf9400..5cd162ccbd7814dcd77b6860f43d918e9a7ab88b 100644
--- a/chrome/browser/chromeos/login/existing_user_controller.cc
+++ b/chrome/browser/chromeos/login/existing_user_controller.cc
@@ -603,7 +603,7 @@ void ExistingUserController::SetDisplayEmail(const std::string& email) {
}
void ExistingUserController::ShowWrongHWIDScreen() {
- scoped_ptr<DictionaryValue> params;
+ scoped_ptr<base::DictionaryValue> params;
host_->StartWizard(WizardController::kWrongHWIDScreenName, params.Pass());
login_display_->OnFadeOut();
}
@@ -642,9 +642,9 @@ void ExistingUserController::OnEnrollmentOwnershipCheckCompleted(
void ExistingUserController::ShowEnrollmentScreen(bool is_auto_enrollment,
const std::string& user) {
- scoped_ptr<DictionaryValue> params;
+ scoped_ptr<base::DictionaryValue> params;
if (is_auto_enrollment) {
- params.reset(new DictionaryValue());
+ params.reset(new base::DictionaryValue());
params->SetBoolean("is_auto_enrollment", true);
params->SetString("user", user);
}
@@ -654,19 +654,19 @@ void ExistingUserController::ShowEnrollmentScreen(bool is_auto_enrollment,
}
void ExistingUserController::ShowResetScreen() {
- scoped_ptr<DictionaryValue> params;
+ scoped_ptr<base::DictionaryValue> params;
host_->StartWizard(WizardController::kResetScreenName, params.Pass());
login_display_->OnFadeOut();
}
void ExistingUserController::ShowKioskEnableScreen() {
- scoped_ptr<DictionaryValue> params;
+ scoped_ptr<base::DictionaryValue> params;
host_->StartWizard(WizardController::kKioskEnableScreenName, params.Pass());
login_display_->OnFadeOut();
}
void ExistingUserController::ShowKioskAutolaunchScreen() {
- scoped_ptr<DictionaryValue> params;
+ scoped_ptr<base::DictionaryValue> params;
host_->StartWizard(WizardController::kKioskAutolaunchScreenName,
params.Pass());
login_display_->OnFadeOut();
@@ -929,7 +929,7 @@ void ExistingUserController::DeviceSettingsChanged() {
}
void ExistingUserController::ActivateWizard(const std::string& screen_name) {
- scoped_ptr<DictionaryValue> params;
+ scoped_ptr<base::DictionaryValue> params;
host_->StartWizard(screen_name, params.Pass());
}
« no previous file with comments | « chrome/browser/chromeos/locale_change_guard.cc ('k') | chrome/browser/chromeos/login/login_display_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698