| Index: chrome/browser/printing/cloud_print/test/cloud_print_policy_browsertest.cc
|
| diff --git a/chrome/browser/printing/cloud_print/test/cloud_print_policy_browsertest.cc b/chrome/browser/printing/cloud_print/test/cloud_print_policy_browsertest.cc
|
| index 344fcf42bbdc90743b8b0ed781cd4f4204dd9b48..40fc4b6c20ef8478cf6f158ec55bf687ee75f883 100644
|
| --- a/chrome/browser/printing/cloud_print/test/cloud_print_policy_browsertest.cc
|
| +++ b/chrome/browser/printing/cloud_print/test/cloud_print_policy_browsertest.cc
|
| @@ -47,7 +47,8 @@ IN_PROC_BROWSER_TEST_F(CloudPrintPolicyTest, NormalPassedFlag) {
|
|
|
| base::ProcessHandle handle;
|
| bool launched =
|
| - base::LaunchProcess(new_command_line, base::LaunchOptions(), &handle);
|
| + base::LaunchProcess(new_command_line, base::LaunchOptionsForTest(),
|
| + &handle);
|
| EXPECT_TRUE(launched);
|
|
|
| observer.Wait();
|
| @@ -69,7 +70,8 @@ IN_PROC_BROWSER_TEST_F(CloudPrintPolicyTest, DISABLED_CloudPrintPolicyFlag) {
|
|
|
| base::ProcessHandle handle;
|
| bool launched =
|
| - base::LaunchProcess(new_command_line, base::LaunchOptions(), &handle);
|
| + base::LaunchProcess(new_command_line, base::LaunchOptionsForTest(),
|
| + &handle);
|
| EXPECT_TRUE(launched);
|
|
|
| int exit_code = -100;
|
|
|