diff options
author | stevenjb@chromium.org <stevenjb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-04 03:28:26 +0000 |
---|---|---|
committer | stevenjb@chromium.org <stevenjb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-04 03:28:26 +0000 |
commit | c8b7e20daf190b37483374fe2c293e19e46fa820 (patch) | |
tree | 6d279a340c1b40f673945307c155addf8d14e7cf /ash/ash_switches.cc | |
parent | 287115c938c6a4a5305fbd9b73a84c0d402d0b24 (diff) | |
download | chromium_src-c8b7e20daf190b37483374fe2c293e19e46fa820.zip chromium_src-c8b7e20daf190b37483374fe2c293e19e46fa820.tar.gz chromium_src-c8b7e20daf190b37483374fe2c293e19e46fa820.tar.bz2 |
Add PanelWindow and PanelLayoutManager to ash.
This implements a sample implementation of a WidgetDelegateView (PanelWindow) and a LayoutManager to provide an initial outline for developing panels.
ash_shell must be run with --aura-panels to get the new behavior, since Chrome currently relies on existing behavior for widgets of TYPE_PANEL.
BUG=98330
TEST=Run ash_shell --aura-panels to see a simple panel test implementation. Ensure panels work as expected in Chrome.
Review URL: http://codereview.chromium.org/9104027
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@120460 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 |