Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5118)

Unified Diff: chrome/browser/ui/browser_list.cc

Issue 6353001: chromeos: Notify window manager earlier about signout. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/chrome
Patch Set: x11_util -> ui Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/ui/browser_list.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/browser_list.cc
diff --git a/chrome/browser/ui/browser_list.cc b/chrome/browser/ui/browser_list.cc
index ec5fef1cc27a11fa0ebba44072e4c641a505a5f6..08a9d1dd07fc57bead857c04353f26aa46d16c45 100644
--- a/chrome/browser/ui/browser_list.cc
+++ b/chrome/browser/ui/browser_list.cc
@@ -160,6 +160,10 @@ Browser* FindBrowserMatching(const T& begin,
BrowserList::BrowserVector BrowserList::browsers_;
ObserverList<BrowserList::Observer> BrowserList::observers_;
+#if defined(OS_CHROMEOS)
+bool BrowserList::notified_window_manager_about_signout_ = false;
+#endif
+
// static
void BrowserList::AddBrowser(Browser* browser) {
DCHECK(browser);
@@ -186,11 +190,16 @@ void BrowserList::AddBrowser(Browser* browser) {
// static
void BrowserList::NotifyAndTerminate() {
+#if defined(OS_CHROMEOS)
+ // Let the window manager know that we're going away before we start closing
+ // windows so it can display a graceful transition to a black screen.
+ chromeos::WmIpc::instance()->NotifyAboutSignout();
+ notified_window_manager_about_signout_ = true;
+#endif
NotificationService::current()->Notify(NotificationType::APP_TERMINATING,
NotificationService::AllSources(),
NotificationService::NoDetails());
#if defined(OS_CHROMEOS)
- chromeos::WmIpc::instance()->NotifyAboutSignout();
if (chromeos::CrosLibrary::Get()->EnsureLoaded()) {
chromeos::CrosLibrary::Get()->GetLoginLibrary()->StopSession("");
return;
@@ -236,6 +245,16 @@ void BrowserList::RemoveBrowser(Browser* browser) {
if (browsers_.empty() &&
(browser_shutdown::IsTryingToQuit() ||
g_browser_process->IsShuttingDown())) {
+#if defined(OS_CHROMEOS)
+ // We might've already notified the window manager before closing any
+ // windows in NotifyAndTerminate() if we were able to take the
+ // no-beforeunload-handlers-or-downloads fast path; no need to do it again
+ // here.
+ if (!notified_window_manager_about_signout_) {
+ chromeos::WmIpc::instance()->NotifyAboutSignout();
+ notified_window_manager_about_signout_ = true;
+ }
+#endif
// Last browser has just closed, and this is a user-initiated quit or there
// is no module keeping the app alive, so send out our notification. No need
// to call ProfileManager::ShutdownSessionServices() as part of the
« no previous file with comments | « chrome/browser/ui/browser_list.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698