diff options
author | oshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-25 15:29:16 +0000 |
---|---|---|
committer | oshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-25 15:29:16 +0000 |
commit | 050e7718ca0a47182f7a478816c60686071357b8 (patch) | |
tree | adf4851aab092da072c454bf8c4cd9d9a3fe83e4 /ash/shell/shell_delegate_impl.cc | |
parent | f569a9c22c3df3c80ae5c05c2181f9ccc8067968 (diff) | |
download | chromium_src-050e7718ca0a47182f7a478816c60686071357b8.zip chromium_src-050e7718ca0a47182f7a478816c60686071357b8.tar.gz chromium_src-050e7718ca0a47182f7a478816c60686071357b8.tar.bz2 |
Delete "shutdown without closing browsers"
Removing unused ShellDelegate::Shutdown()
Added new PreShutdown to safely cleanup DisplayObserver.
Chrome no longer access X during shutdown (except for deleting X window, which is safe), so normal SessionEnd
path should work.
There is another issue when this happens during login screen, and I'll file a separate bug for it.
BUG=336653
Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=259061
R=abodenha@chromium.org, thestig@chromium.org
Review URL: https://codereview.chromium.org/205963005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@259203 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/shell/shell_delegate_impl.cc')
-rw-r--r-- | ash/shell/shell_delegate_impl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ash/shell/shell_delegate_impl.cc b/ash/shell/shell_delegate_impl.cc index d21f7ac..4efd104 100644 --- a/ash/shell/shell_delegate_impl.cc +++ b/ash/shell/shell_delegate_impl.cc @@ -101,7 +101,7 @@ bool ShellDelegateImpl::IsRunningInForcedAppMode() const { void ShellDelegateImpl::PreInit() { } -void ShellDelegateImpl::Shutdown() { +void ShellDelegateImpl::PreShutdown() { } void ShellDelegateImpl::Exit() { |