diff options
author | mukai@chromium.org <mukai@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-07 03:48:41 +0000 |
---|---|---|
committer | mukai@chromium.org <mukai@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-07 03:48:41 +0000 |
commit | 3e1cdd31535460d1ade1c649587978b682e3b850 (patch) | |
tree | 7156b3ac37d0b5e77b144c076cd946f575b539fb /ash/shell.h | |
parent | 1233572cc709dabbd9f39004d0a6f630361f0800 (diff) | |
download | chromium_src-3e1cdd31535460d1ade1c649587978b682e3b850.zip chromium_src-3e1cdd31535460d1ade1c649587978b682e3b850.tar.gz chromium_src-3e1cdd31535460d1ade1c649587978b682e3b850.tar.bz2 |
Allow taking screenshots for all of minitors at the same time.
It contains a fix of screenshot filename too. Because multiple
screenshot taking happens in a very short time period, the filename
could be same for all of the monitors. Thus we need to rename them
by specifying some suffix. Here I just added numbers (2), (3), ...
BUG=130718
TEST=none
Review URL: https://chromiumcodereview.appspot.com/10514002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@140939 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/shell.h')
-rw-r--r-- | ash/shell.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ash/shell.h b/ash/shell.h index b470705..84f8d5d 100644 --- a/ash/shell.h +++ b/ash/shell.h @@ -261,6 +261,9 @@ class ASH_EXPORT Shell : aura::CursorDelegate { internal::FocusCycler* focus_cycler() { return focus_cycler_.get(); } + internal::MonitorController* monitor_controller() { + return monitor_controller_.get(); + } ShellDelegate* delegate() { return delegate_.get(); } SystemTrayDelegate* tray_delegate() { return tray_delegate_.get(); } |