summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/browser_list_impl.cc
diff options
context:
space:
mode:
authorbenwells@chromium.org <benwells@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-27 10:48:15 +0000
committerbenwells@chromium.org <benwells@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-07-27 10:48:15 +0000
commit1e0c74057d5396c3d80b9123a44f0de1562a1a2b (patch)
tree64813e8763fe33ee8c8e17af5a81b51717f90ced /chrome/browser/ui/browser_list_impl.cc
parent9bc48646f77da626baf7f1f1aed4ccc7db3a4ea6 (diff)
downloadchromium_src-1e0c74057d5396c3d80b9123a44f0de1562a1a2b.zip
chromium_src-1e0c74057d5396c3d80b9123a44f0de1562a1a2b.tar.gz
chromium_src-1e0c74057d5396c3d80b9123a44f0de1562a1a2b.tar.bz2
Remove details from BROWSER_CLOSING and BROWSER_CLOSED notifications.
The details was a boolean indicating whether this is the last browser window closing. As part of this change the logic for saving pinned tabs has been changed to not use the boolean in the details, and has been updated to handle the case where a user exit or closing of the last window is cancelled by an onbeforeunload event. Also as part of this change, both the pinned tab and multi profile features have been updated to handle cases of the browser process not being closed due to background mode or (in the future) packaged apps, and then more browser windows being opened. BUG=None TEST=Test shutdown Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=148281 Review URL: https://chromiumcodereview.appspot.com/10800031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148741 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui/browser_list_impl.cc')
-rw-r--r--chrome/browser/ui/browser_list_impl.cc20
1 files changed, 1 insertions, 19 deletions
diff --git a/chrome/browser/ui/browser_list_impl.cc b/chrome/browser/ui/browser_list_impl.cc
index 557064f..50393d1 100644
--- a/chrome/browser/ui/browser_list_impl.cc
+++ b/chrome/browser/ui/browser_list_impl.cc
@@ -70,28 +70,10 @@ void BrowserListImpl::AddBrowser(Browser* browser) {
void BrowserListImpl::RemoveBrowser(Browser* browser) {
RemoveBrowserFrom(browser, &last_active_browsers_);
- // Many UI tests rely on closing the last browser window quitting the
- // application.
- // Mac: Closing all windows does not indicate quitting the application. Lie
- // for now and ignore behavior outside of unit tests.
- // ChromeOS: Force closing last window to close app with flag.
- // TODO(andybons | pkotwicz): Fix the UI tests to Do The Right Thing.
-#if defined(OS_CHROMEOS)
- bool closing_app;
- if (CommandLine::ForCurrentProcess()->HasSwitch(
- switches::kDisableZeroBrowsersOpenForTests))
- closing_app = (browsers_.size() == 1);
- else
- closing_app = (browsers_.size() == 1 &&
- browser_shutdown::IsTryingToQuit());
-#else
- bool closing_app = (browsers_.size() == 1);
-#endif // OS_CHROMEOS
-
content::NotificationService::current()->Notify(
chrome::NOTIFICATION_BROWSER_CLOSED,
content::Source<Browser>(browser),
- content::Details<bool>(&closing_app));
+ content::NotificationService::NoDetails());
RemoveBrowserFrom(browser, &browsers_);