summaryrefslogtreecommitdiffstats
path: root/chrome/browser/browser_list.h
diff options
context:
space:
mode:
authormark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-12 04:32:14 +0000
committermark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-12 04:32:14 +0000
commita93244407e205a8619d620ce91bafbdf88eab195 (patch)
tree11cb0d23c6936c0e867c15aacd8450f4bb40cce2 /chrome/browser/browser_list.h
parent4dee39c5d979e25a0515e3f97d3657a464dd7d79 (diff)
downloadchromium_src-a93244407e205a8619d620ce91bafbdf88eab195.zip
chromium_src-a93244407e205a8619d620ce91bafbdf88eab195.tar.gz
chromium_src-a93244407e205a8619d620ce91bafbdf88eab195.tar.bz2
SIGTERM should cause the application to exit on the Mac.
BUG=23551 TEST=Send SIGTERM to the browser process. It should exit cleanly. Review URL: http://codereview.chromium.org/269048 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28695 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browser_list.h')
-rw-r--r--chrome/browser/browser_list.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/chrome/browser/browser_list.h b/chrome/browser/browser_list.h
index de07b9a..b510b8c 100644
--- a/chrome/browser/browser_list.h
+++ b/chrome/browser/browser_list.h
@@ -78,6 +78,12 @@ class BrowserList {
// the session. use_post should only be false when invoked from end session.
static void CloseAllBrowsers(bool use_post);
+ // Closes all browsers and exits. This is equivalent to
+ // CloseAllBrowsers(true) on platforms where the application exits when no
+ // more windows are remaining. On other platforms (the Mac), this will
+ // additionally exit the application.
+ static void CloseAllBrowsersAndExit();
+
// Begins shutdown of the application when the Windows session is ending.
static void WindowsSessionEnding();