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-08-09 05:22:38 +0000
committerbenwells@chromium.org <benwells@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-08-09 05:22:38 +0000
commitc2c7f582ed00988a5a5fd79de0a35160d9828b6e (patch)
tree28165af485d11d920bde2e9e19e94584853f84fc /chrome/browser/ui/browser_list_impl.cc
parent0f7cd86551b39c48944b24ccefdf215af20710d3 (diff)
downloadchromium_src-c2c7f582ed00988a5a5fd79de0a35160d9828b6e.zip
chromium_src-c2c7f582ed00988a5a5fd79de0a35160d9828b6e.tar.gz
chromium_src-c2c7f582ed00988a5a5fd79de0a35160d9828b6e.tar.bz2
Remove call to IsTryingToQuit from BrowserListImpl::SetLastActive
Instead the profile manager watches notifications to determine this. BUG=130456 Review URL: https://chromiumcodereview.appspot.com/10826044 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150743 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui/browser_list_impl.cc')
-rw-r--r--chrome/browser/ui/browser_list_impl.cc5
1 files changed, 0 insertions, 5 deletions
diff --git a/chrome/browser/ui/browser_list_impl.cc b/chrome/browser/ui/browser_list_impl.cc
index 50393d1..178f408 100644
--- a/chrome/browser/ui/browser_list_impl.cc
+++ b/chrome/browser/ui/browser_list_impl.cc
@@ -105,11 +105,6 @@ void BrowserListImpl::RemoveObserver(BrowserListObserver* observer) {
}
void BrowserListImpl::SetLastActive(Browser* browser) {
- // If the browser is currently trying to quit, we don't want to set the last
- // active browser because that can alter the last active browser that the user
- // intended depending on the order in which the windows close.
- if (browser_shutdown::IsTryingToQuit())
- return;
RemoveBrowserFrom(browser, &last_active_browsers_);
last_active_browsers_.push_back(browser);