diff options
author | oshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-24 16:35:20 +0000 |
---|---|---|
committer | oshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-24 16:35:20 +0000 |
commit | dcc9907254e7910cda7bbf24de8b326fc0bede61 (patch) | |
tree | 0e0812c06fa6f54a46ef7ddccb524bd0dbcf6c13 /chrome/browser/ui/ash/chrome_shell_delegate_views.cc | |
parent | 8750436d07aaee42b9f1bc99b87387268a9fcb67 (diff) | |
download | chromium_src-dcc9907254e7910cda7bbf24de8b326fc0bede61.zip chromium_src-dcc9907254e7910cda7bbf24de8b326fc0bede61.tar.gz chromium_src-dcc9907254e7910cda7bbf24de8b326fc0bede61.tar.bz2 |
Remember mirroring status
-DisplayLayout now keeps track of mirroring state as well.
-Load preference before Shell::Init is execute so that display controller can provide the correct state at boot/startup time
-Added OutputConfigurator::Delegate so that OutputConfigurator can determine the state for dual display when the display is connected.
BUG=196818
TEST=covered by unittests.
Review URL: https://codereview.chromium.org/12716007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@190276 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui/ash/chrome_shell_delegate_views.cc')
-rw-r--r-- | chrome/browser/ui/ash/chrome_shell_delegate_views.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/chrome/browser/ui/ash/chrome_shell_delegate_views.cc b/chrome/browser/ui/ash/chrome_shell_delegate_views.cc index a404e5a..7d4d1ea 100644 --- a/chrome/browser/ui/ash/chrome_shell_delegate_views.cc +++ b/chrome/browser/ui/ash/chrome_shell_delegate_views.cc @@ -36,6 +36,9 @@ bool ChromeShellDelegate::IsScreenLocked() const { return false; } +void ChromeShellDelegate::PreInit() { +} + void ChromeShellDelegate::Shutdown() { } |