From d078691069484236801e23f87b43d0e7f4cb3e49 Mon Sep 17 00:00:00 2001 From: "rsesek@chromium.org" Date: Wed, 9 Apr 2014 20:06:26 +0000 Subject: [Linux] Use PR_SET_NO_NEW_PRIVS by default in base/process/launch.h. BUG=358713 R=jln@chromium.org, thakis@chromium.org Review URL: https://codereview.chromium.org/197213015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@262786 0039d316-1c4b-4281-b951-d872f2087c98 --- apps/load_and_launch_browsertest.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps') diff --git a/apps/load_and_launch_browsertest.cc b/apps/load_and_launch_browsertest.cc index fecfe84..0471415 100644 --- a/apps/load_and_launch_browsertest.cc +++ b/apps/load_and_launch_browsertest.cc @@ -51,7 +51,7 @@ IN_PROC_BROWSER_TEST_F(PlatformAppBrowserTest, new_cmdline.AppendSwitch(content::kLaunchAsBrowser); base::ProcessHandle process; - base::LaunchProcess(new_cmdline, base::LaunchOptions(), &process); + base::LaunchProcess(new_cmdline, base::LaunchOptionsForTest(), &process); ASSERT_NE(base::kNullProcessHandle, process); ASSERT_TRUE(launched_listener.WaitUntilSatisfied()); @@ -94,7 +94,7 @@ IN_PROC_BROWSER_TEST_F(PlatformAppBrowserTest, new_cmdline.AppendArgPath(test_file_path); base::ProcessHandle process; - base::LaunchProcess(new_cmdline, base::LaunchOptions(), &process); + base::LaunchProcess(new_cmdline, base::LaunchOptionsForTest(), &process); ASSERT_NE(base::kNullProcessHandle, process); ASSERT_TRUE(launched_listener.WaitUntilSatisfied()); -- cgit v1.1