Index: chrome/browser/chromeos/login/managed/locally_managed_user_creation_screen.cc |
diff --git a/chrome/browser/chromeos/login/managed/locally_managed_user_creation_screen.cc b/chrome/browser/chromeos/login/managed/locally_managed_user_creation_screen.cc |
index a00bfb120a8fa0d6d30d50286923db2c8d88cb0a..8225560fa23af9a1ef5d918d8d9fcf98454ed8ca 100644 |
--- a/chrome/browser/chromeos/login/managed/locally_managed_user_creation_screen.cc |
+++ b/chrome/browser/chromeos/login/managed/locally_managed_user_creation_screen.cc |
@@ -210,7 +210,7 @@ void LocallyManagedUserCreationScreen::ImportManagedUser( |
DCHECK(controller_.get()); |
DCHECK(existing_users_.get()); |
VLOG(1) << "Importing user " << user_id; |
- DictionaryValue* user_info; |
+ base::DictionaryValue* user_info; |
if (!existing_users_->GetDictionary(user_id, &user_info)) { |
LOG(ERROR) << "Can not import non-existing user " << user_id; |
return; |
@@ -254,7 +254,7 @@ void LocallyManagedUserCreationScreen::ImportManagedUserWithPassword( |
DCHECK(controller_.get()); |
DCHECK(existing_users_.get()); |
VLOG(1) << "Importing user " << user_id; |
- DictionaryValue* user_info; |
+ base::DictionaryValue* user_info; |
if (!existing_users_->GetDictionary(user_id, &user_info)) { |
LOG(ERROR) << "Can not import non-existing user " << user_id; |
return; |