diff options
author | oshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-25 00:49:31 +0000 |
---|---|---|
committer | oshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-25 00:49:31 +0000 |
commit | 69f8dc80be91b57af76374d858f06f52cb36eb07 (patch) | |
tree | 217b33c9f29dc9d8fb7bff43be4e194720d17476 /ash/test/test_shell_delegate.h | |
parent | a94fe6a7fb8d6bd3a3dda6ff5cf5ac4abf88745e (diff) | |
download | chromium_src-69f8dc80be91b57af76374d858f06f52cb36eb07.zip chromium_src-69f8dc80be91b57af76374d858f06f52cb36eb07.tar.gz chromium_src-69f8dc80be91b57af76374d858f06f52cb36eb07.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
Review URL: https://codereview.chromium.org/205963005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@259061 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/test/test_shell_delegate.h')
-rw-r--r-- | ash/test/test_shell_delegate.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ash/test/test_shell_delegate.h b/ash/test/test_shell_delegate.h index a41d1bb..9e610b6 100644 --- a/ash/test/test_shell_delegate.h +++ b/ash/test/test_shell_delegate.h @@ -35,7 +35,7 @@ class TestShellDelegate : public ShellDelegate { virtual bool IsMultiProfilesEnabled() const OVERRIDE; virtual bool IsRunningInForcedAppMode() const OVERRIDE; virtual void PreInit() OVERRIDE; - virtual void Shutdown() OVERRIDE; + virtual void PreShutdown() OVERRIDE; virtual void Exit() OVERRIDE; virtual keyboard::KeyboardControllerProxy* CreateKeyboardControllerProxy() OVERRIDE; |