Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(89)

Unified Diff: ui/aura_shell/shell.h

Issue 8381015: Add workspace to desktop (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: temporarily exlucde tests failing on win Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/aura_shell/desktop_background_view.cc ('k') | ui/aura_shell/shell.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/aura_shell/shell.h
diff --git a/ui/aura_shell/shell.h b/ui/aura_shell/shell.h
index 114ee02acbe6895778285716d78d2ebfa05bbe4b..c7a2700e0038ae38c65a5fbe19dda76bbea289cf 100644
--- a/ui/aura_shell/shell.h
+++ b/ui/aura_shell/shell.h
@@ -28,6 +28,7 @@ namespace aura_shell {
class Launcher;
class ShellDelegate;
+class WorkspaceManager;
// Shell is a singleton object that presents the Shell API and implements the
// Desktop's delegate interface.
@@ -49,8 +50,8 @@ class AURA_SHELL_EXPORT Shell : public aura::DesktopDelegate {
aura::Window* GetContainer(int container_id);
const aura::Window* GetContainer(int container_id) const;
- void TileWindows();
- void RestoreTiledWindows();
+ // Toggles between overview mode and normal mode.
+ void ToggleOverview();
Launcher* launcher() { return launcher_.get(); }
@@ -72,6 +73,8 @@ class AURA_SHELL_EXPORT Shell : public aura::DesktopDelegate {
scoped_ptr<Launcher> launcher_;
+ scoped_ptr<WorkspaceManager> workspace_manager_;
+
DISALLOW_COPY_AND_ASSIGN(Shell);
};
« no previous file with comments | « ui/aura_shell/desktop_background_view.cc ('k') | ui/aura_shell/shell.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698