diff options
author | alexeypa@chromium.org <alexeypa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-08 22:37:55 +0000 |
---|---|---|
committer | alexeypa@chromium.org <alexeypa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-08 22:37:55 +0000 |
commit | e9057a6f4d454923e8744948721cd4f8e395a1b1 (patch) | |
tree | f6b3b86ffa087659259f4bc93ceb7419605d8289 /remoting/host/desktop_session_win.h | |
parent | 2f2f72b44f1a8060023665c751663184a317f67d (diff) | |
download | chromium_src-e9057a6f4d454923e8744948721cd4f8e395a1b1.zip chromium_src-e9057a6f4d454923e8744948721cd4f8e395a1b1.tar.gz chromium_src-e9057a6f4d454923e8744948721cd4f8e395a1b1.tar.bz2 |
The worker process launcher can now ask the worker process to crash.
When the worker process launcher detects or is notified of a protocol violation:
- It immediately stops processing IPCs from the worker, and requests that it crash.
- The worker process may respect the request to crash, producing a dump for debugging.
- If the worker ignores the request then it will be killed after a grace period has elapsed.
BUG=179215
Review URL: https://chromiumcodereview.appspot.com/12545006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@187055 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/host/desktop_session_win.h')
-rw-r--r-- | remoting/host/desktop_session_win.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/remoting/host/desktop_session_win.h b/remoting/host/desktop_session_win.h index 976da9e..d174019 100644 --- a/remoting/host/desktop_session_win.h +++ b/remoting/host/desktop_session_win.h @@ -67,8 +67,8 @@ class DesktopSessionWin // ChromotingDesktopDaemonMsg_InjectSas handler. void OnInjectSas(); - // Restarts the desktop process. - void RestartDesktopProcess(const tracked_objects::Location& location); + // Requests the desktop process to crash. + void CrashDesktopProcess(const tracked_objects::Location& location); // Task runner on which public methods of this class should be called. scoped_refptr<AutoThreadTaskRunner> main_task_runner_; |