| Index: apps/load_and_launch_browsertest.cc | 
| diff --git a/apps/load_and_launch_browsertest.cc b/apps/load_and_launch_browsertest.cc | 
| index 9432420ffe6b0e7302db1d845dfbd352e731edfe..3414dd96ad02d69c57e21c211f9275b89b7f16ab 100644 | 
| --- a/apps/load_and_launch_browsertest.cc | 
| +++ b/apps/load_and_launch_browsertest.cc | 
| @@ -62,8 +62,9 @@ IN_PROC_BROWSER_TEST_F(PlatformAppBrowserTest, | 
| ASSERT_TRUE(process.IsValid()); | 
|  | 
| ASSERT_TRUE(launched_listener.WaitUntilSatisfied()); | 
| -  ASSERT_TRUE(base::WaitForSingleProcess(process.Handle(), | 
| -                                         TestTimeouts::action_timeout())); | 
| +  int exit_code; | 
| +  ASSERT_TRUE(process.WaitForExitWithTimeout(TestTimeouts::action_timeout(), | 
| +                                             &exit_code)); | 
| } | 
|  | 
| // TODO(jackhou): Enable this test once it works on OSX. It currently does not | 
| @@ -102,8 +103,9 @@ IN_PROC_BROWSER_TEST_F(PlatformAppBrowserTest, | 
| ASSERT_TRUE(process.IsValid()); | 
|  | 
| ASSERT_TRUE(launched_listener.WaitUntilSatisfied()); | 
| -  ASSERT_TRUE(base::WaitForSingleProcess(process.Handle(), | 
| -                                         TestTimeouts::action_timeout())); | 
| +  int exit_code; | 
| +  ASSERT_TRUE(process.WaitForExitWithTimeout(TestTimeouts::action_timeout(), | 
| +                                             &exit_code)); | 
| } | 
|  | 
| namespace { | 
|  |