diff options
author | nsylvain@chromium.org <nsylvain@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-07 05:15:21 +0000 |
---|---|---|
committer | nsylvain@chromium.org <nsylvain@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-07 05:15:21 +0000 |
commit | d54636e5c569acc5acc618b0ea10b2a565514c75 (patch) | |
tree | 830f6036ec2d1f1a371a74f41c56d37ef1a3c64e /base/process_util.h | |
parent | 2ccb70ec0356cb9257ce62958e37ec19c1b7c32c (diff) | |
download | chromium_src-d54636e5c569acc5acc618b0ea10b2a565514c75.zip chromium_src-d54636e5c569acc5acc618b0ea10b2a565514c75.tar.gz chromium_src-d54636e5c569acc5acc618b0ea10b2a565514c75.tar.bz2 |
Revert 58639 -
This seems to have caused some ui_tests to fail (AllowCookies, BlockCookies)
Original comment:
Write the outcome of the Toast Experiment for system-level installs to the right registry key.
BUG=44378
TEST=None
Review URL: http://codereview.chromium.org/3308003
TBR=finnur@chromium.org
Review URL: http://codereview.chromium.org/3369002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@58667 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/process_util.h')
-rw-r--r-- | base/process_util.h | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/base/process_util.h b/base/process_util.h index 4699c9e2..dae3d46 100644 --- a/base/process_util.h +++ b/base/process_util.h @@ -174,13 +174,6 @@ bool GetProcessIntegrityLevel(ProcessHandle process, IntegrityLevel *level); bool LaunchApp(const std::wstring& cmdline, bool wait, bool start_hidden, ProcessHandle* process_handle); -// Same as LaunchApp, except allows the new process to inherit handles of the -// parent process. -bool LaunchAppWithHandleInheritance(const std::wstring& cmdline, - bool wait, - bool start_hidden, - ProcessHandle* process_handle); - // Runs the given application name with the given command line as if the user // represented by |token| had launched it. The caveats about |cmdline| and // |process_handle| explained for LaunchApp above apply as well. @@ -195,11 +188,10 @@ bool LaunchAppAsUser(UserTokenHandle token, const std::wstring& cmdline, bool start_hidden, ProcessHandle* process_handle); // Has the same behavior as LaunchAppAsUser, but offers the boolean option to -// use an empty string for the desktop name and a boolean for allowing the -// child process to inherit handles from its parent. +// use an empty string for the desktop name. bool LaunchAppAsUser(UserTokenHandle token, const std::wstring& cmdline, bool start_hidden, ProcessHandle* process_handle, - bool empty_desktop_name, bool inherit_handles); + bool empty_desktop_name); #elif defined(OS_POSIX) |