diff options
author | stevenjb@chromium.org <stevenjb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-04 16:44:27 +0000 |
---|---|---|
committer | stevenjb@chromium.org <stevenjb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-04 16:44:27 +0000 |
commit | 6b85493985ec994cd82977ea088bb7a3de955a66 (patch) | |
tree | 6824605dce0d1118ae77600a4f18f5c37626aa9d /ash/ash_switches.cc | |
parent | 83b583eee2d88a6a79f30073e83ed6a5e0ae3fc5 (diff) | |
download | chromium_src-6b85493985ec994cd82977ea088bb7a3de955a66.zip chromium_src-6b85493985ec994cd82977ea088bb7a3de955a66.tar.gz chromium_src-6b85493985ec994cd82977ea088bb7a3de955a66.tar.bz2 |
Add PanelWindow and PanelLayoutManager to ash. (+ win fix)
This implements a sample implementation of a WidgetDelegateView (PanelWindow) and a LayoutManager to provide an initial out
ash_shell must be run with --aura-panels to get the new behavior, since Chrome currently relies on existing behavior for wi
BUG=98330
TEST=Run ash_shell --aura-panels to see a simple panel test implementation. Ensure panels work as expected in Chrome.
Original Review URL: http://codereview.chromium.org/9104027
TBR=dslomov@chromium.org
Review URL: http://codereview.chromium.org/9325051
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@120478 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/ash_switches.cc')
-rw-r--r-- | ash/ash_switches.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ash/ash_switches.cc b/ash/ash_switches.cc index 44e1737..69067eb 100644 --- a/ash/ash_switches.cc +++ b/ash/ash_switches.cc @@ -49,5 +49,8 @@ const char kAuraWindowModeManaged[] = "managed"; // Traditional window management with multiple draggable windows. const char kAuraWindowModeOverlapping[] = "overlapping"; +// Use Aura to manage windows of type WINDOW_TYPE_PANEL. +const char kAuraPanelManager[] = "aura-panels"; + } // namespace switches } // namespace ash |