diff options
author | atwilson@chromium.org <atwilson@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-06 01:43:56 +0000 |
---|---|---|
committer | atwilson@chromium.org <atwilson@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-06 01:43:56 +0000 |
commit | cd60f084650684bb407f237bde2f7156b9f75aca (patch) | |
tree | 8dfe29aeefde03908ff1ab894ea220ed89812b4b /chrome/common/child_process.h | |
parent | 2858d5406a254a1dba769b112ca86951f0ec9361 (diff) | |
download | chromium_src-cd60f084650684bb407f237bde2f7156b9f75aca.zip chromium_src-cd60f084650684bb407f237bde2f7156b9f75aca.tar.gz chromium_src-cd60f084650684bb407f237bde2f7156b9f75aca.tar.bz2 |
Added support for --worker-startup-dialog command line flag.
Added ChildProcess::WaitForDebugger() utility routine, and changed the various
processes to use it.
Review URL: http://codereview.chromium.org/370006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31188 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/child_process.h')
-rw-r--r-- | chrome/common/child_process.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/chrome/common/child_process.h b/chrome/common/child_process.h index 349ae92..fb2c660 100644 --- a/chrome/common/child_process.h +++ b/chrome/common/child_process.h @@ -46,6 +46,7 @@ class ChildProcess { // Getter for the one ChildProcess object for this process. static ChildProcess* current() { return child_process_; } + static void WaitForDebugger(const std::wstring& label); private: int ref_count_; |