| Index: chrome/browser/ui/autofill/autofill_dialog_controller_unittest.cc
|
| diff --git a/chrome/browser/ui/autofill/autofill_dialog_controller_unittest.cc b/chrome/browser/ui/autofill/autofill_dialog_controller_unittest.cc
|
| index 1d20ffe2656f58d540f21a8d3466411327144eff..7fcf1caae4d5dd440b611b4df4214b0148d47cd6 100644
|
| --- a/chrome/browser/ui/autofill/autofill_dialog_controller_unittest.cc
|
| +++ b/chrome/browser/ui/autofill/autofill_dialog_controller_unittest.cc
|
| @@ -2528,7 +2528,7 @@ TEST_F(AutofillDialogControllerTest, NotProdNotification) {
|
| controller()->OnDidGetWalletItems(
|
| wallet::GetTestWalletItems(wallet::AMEX_DISALLOWED));
|
|
|
| - CommandLine* command_line = CommandLine::ForCurrentProcess();
|
| + base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
|
| ASSERT_EQ(
|
| "",
|
| command_line->GetSwitchValueASCII(switches::kWalletServiceUseSandbox));
|
| @@ -2543,7 +2543,7 @@ TEST_F(AutofillDialogControllerTest, NoNotProdNotification) {
|
| controller()->OnDidGetWalletItems(
|
| wallet::GetTestWalletItems(wallet::AMEX_DISALLOWED));
|
|
|
| - CommandLine* command_line = CommandLine::ForCurrentProcess();
|
| + base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
|
| ASSERT_EQ(
|
| "",
|
| command_line->GetSwitchValueASCII(switches::kWalletServiceUseSandbox));
|
|
|