diff options
Diffstat (limited to 'ash/shell_delegate.h')
-rw-r--r-- | ash/shell_delegate.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ash/shell_delegate.h b/ash/shell_delegate.h index 5f69459..6f3c7f3 100644 --- a/ash/shell_delegate.h +++ b/ash/shell_delegate.h @@ -21,6 +21,7 @@ namespace aura { class RootWindow; class Window; namespace client { +class StackingClient; class UserActionClient; } } @@ -181,6 +182,9 @@ class ASH_EXPORT ShellDelegate { // Creates a menu model of the context for the |root_window|. virtual ui::MenuModel* CreateContextMenu(aura::RootWindow* root_window) = 0; + + // Creates the stacking client. Shell takes ownership of the object. + virtual aura::client::StackingClient* CreateStackingClient() = 0; }; } // namespace ash |