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

Unified Diff: chrome/browser/ui/webui/signin/signin_create_profile_handler_unittest.cc

Issue 2041513002: Remove ListValue::Append(new {Fundamental,String}Value(...)) usage in //chrome (part 2) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 months 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/webui/signin/signin_create_profile_handler_unittest.cc
diff --git a/chrome/browser/ui/webui/signin/signin_create_profile_handler_unittest.cc b/chrome/browser/ui/webui/signin/signin_create_profile_handler_unittest.cc
index aeab5a3a22d73e7e4367b981365a03a19b4dae38..c776b06150bbc5d8eefecad390573e6c6a4fc091 100644
--- a/chrome/browser/ui/webui/signin/signin_create_profile_handler_unittest.cc
+++ b/chrome/browser/ui/webui/signin/signin_create_profile_handler_unittest.cc
@@ -338,10 +338,10 @@ TEST_F(SigninCreateProfileHandlerTest, CreateProfile) {
// Create a non-supervised profile.
base::ListValue list_args;
- list_args.Append(new base::StringValue(kTestProfileName));
- list_args.Append(new base::StringValue(profiles::GetDefaultAvatarIconUrl(0)));
- list_args.Append(new base::FundamentalValue(false)); // create_shortcut
- list_args.Append(new base::FundamentalValue(false)); // is_supervised
+ list_args.AppendString(kTestProfileName);
+ list_args.AppendString(profiles::GetDefaultAvatarIconUrl(0));
+ list_args.AppendBoolean(false); // create_shortcut
+ list_args.AppendBoolean(false); // is_supervised
handler()->CreateProfile(&list_args);
// Expect a JS callbacks with the new profile information.
@@ -384,12 +384,12 @@ TEST_F(SigninCreateProfileHandlerTest, CreateSupervisedUser) {
// Create a supervised profile.
base::ListValue list_args;
list_args.Clear();
- list_args.Append(new base::StringValue(kSupervisedUsername1));
- list_args.Append(new base::StringValue(profiles::GetDefaultAvatarIconUrl(0)));
- list_args.Append(new base::FundamentalValue(false)); // create_shortcut
- list_args.Append(new base::FundamentalValue(true)); // is_supervised
- list_args.Append(new base::StringValue("")); // supervised_user_id
- list_args.Append(new base::StringValue(custodian()->GetPath().value()));
+ list_args.AppendString(kSupervisedUsername1);
+ list_args.AppendString(profiles::GetDefaultAvatarIconUrl(0));
+ list_args.AppendBoolean(false); // create_shortcut
+ list_args.AppendBoolean(true); // is_supervised
+ list_args.AppendString(""); // supervised_user_id
+ list_args.AppendString(custodian()->GetPath().value());
handler()->CreateProfile(&list_args);
// Expect a JS callbacks with the new profile information.
@@ -432,13 +432,13 @@ TEST_F(SigninCreateProfileHandlerTest, ImportSupervisedUser) {
// Import a supervised profile.
base::ListValue list_args;
list_args.Clear();
- list_args.Append(new base::StringValue(kSupervisedUsername1));
- list_args.Append(new base::StringValue(profiles::GetDefaultAvatarIconUrl(0)));
- list_args.Append(new base::FundamentalValue(false)); // create_shortcut
- list_args.Append(new base::FundamentalValue(true)); // is_supervised
- list_args.Append(
- new base::StringValue(kSupervisedUserId1)); // supervised_user_id
- list_args.Append(new base::StringValue(custodian()->GetPath().value()));
+ list_args.AppendString(kSupervisedUsername1);
+ list_args.AppendString(profiles::GetDefaultAvatarIconUrl(0));
+ list_args.AppendBoolean(false); // create_shortcut
+ list_args.AppendBoolean(true); // is_supervised
+ list_args.AppendString(
+ kSupervisedUserId1); // supervised_user_id
+ list_args.AppendString(custodian()->GetPath().value());
handler()->CreateProfile(&list_args);
// Expect a JS callbacks with the new profile information.
@@ -467,12 +467,12 @@ TEST_F(SigninCreateProfileHandlerTest, ImportSupervisedUserAlreadyOnDevice) {
// Import a supervised profile whose already on the current device.
base::ListValue list_args;
list_args.Clear();
- list_args.Append(new base::StringValue(kSupervisedUsername2));
- list_args.Append(new base::StringValue(profiles::GetDefaultAvatarIconUrl(0)));
- list_args.Append(new base::FundamentalValue(false));
- list_args.Append(new base::FundamentalValue(true));
- list_args.Append(new base::StringValue(kSupervisedUserId2));
- list_args.Append(new base::StringValue(custodian()->GetPath().value()));
+ list_args.AppendString(kSupervisedUsername2);
+ list_args.AppendString(profiles::GetDefaultAvatarIconUrl(0));
+ list_args.AppendBoolean(false);
+ list_args.AppendBoolean(true);
+ list_args.AppendString(kSupervisedUserId2);
+ list_args.AppendString(custodian()->GetPath().value());
handler()->CreateProfile(&list_args);
// Expect a JS callbacks containing an error message.
@@ -503,12 +503,12 @@ TEST_F(SigninCreateProfileHandlerTest, CustodianNotAuthenticated) {
// Create a supervised profile.
base::ListValue list_args;
list_args.Clear();
- list_args.Append(new base::StringValue(kSupervisedUsername1));
- list_args.Append(new base::StringValue(profiles::GetDefaultAvatarIconUrl(0)));
- list_args.Append(new base::FundamentalValue(false)); // create_shortcut
- list_args.Append(new base::FundamentalValue(true)); // is_supervised
- list_args.Append(new base::StringValue("")); // supervised_user_id
- list_args.Append(new base::StringValue(custodian()->GetPath().value()));
+ list_args.AppendString(kSupervisedUsername1);
+ list_args.AppendString(profiles::GetDefaultAvatarIconUrl(0));
+ list_args.AppendBoolean(false); // create_shortcut
+ list_args.AppendBoolean(true); // is_supervised
+ list_args.AppendString(""); // supervised_user_id
+ list_args.AppendString(custodian()->GetPath().value());
handler()->CreateProfile(&list_args);
// Expect a JS callbacks containing an error message.
@@ -538,12 +538,12 @@ TEST_F(SigninCreateProfileHandlerTest, CustodianHasAuthError) {
// Create a supervised profile.
base::ListValue list_args;
list_args.Clear();
- list_args.Append(new base::StringValue(kSupervisedUsername1));
- list_args.Append(new base::StringValue(profiles::GetDefaultAvatarIconUrl(0)));
- list_args.Append(new base::FundamentalValue(false)); // create_shortcut
- list_args.Append(new base::FundamentalValue(true)); // is_supervised
- list_args.Append(new base::StringValue("")); // supervised_user_id
- list_args.Append(new base::StringValue(custodian()->GetPath().value()));
+ list_args.AppendString(kSupervisedUsername1);
+ list_args.AppendString(profiles::GetDefaultAvatarIconUrl(0));
+ list_args.AppendBoolean(false); // create_shortcut
+ list_args.AppendBoolean(true); // is_supervised
+ list_args.AppendString(""); // supervised_user_id
+ list_args.AppendString(custodian()->GetPath().value());
handler()->CreateProfile(&list_args);
// Expect a JS callbacks containing an error message.
@@ -570,12 +570,12 @@ TEST_F(SigninCreateProfileHandlerTest, NotAllowedToCreateSupervisedUser) {
// Create a supervised profile.
base::ListValue list_args;
list_args.Clear();
- list_args.Append(new base::StringValue(kSupervisedUsername1));
- list_args.Append(new base::StringValue(profiles::GetDefaultAvatarIconUrl(0)));
- list_args.Append(new base::FundamentalValue(false)); // create_shortcut
- list_args.Append(new base::FundamentalValue(true)); // is_supervised
- list_args.Append(new base::StringValue("")); // supervised_user_id
- list_args.Append(new base::StringValue(custodian()->GetPath().value()));
+ list_args.AppendString(kSupervisedUsername1);
+ list_args.AppendString(profiles::GetDefaultAvatarIconUrl(0));
+ list_args.AppendBoolean(false); // create_shortcut
+ list_args.AppendBoolean(true); // is_supervised
+ list_args.AppendString(""); // supervised_user_id
+ list_args.AppendString(custodian()->GetPath().value());
handler()->CreateProfile(&list_args);
// Expect nothing to happen.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698