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

Unified Diff: ui/aura_shell/shell.h

Issue 8400067: Fixes bug where windows weren't being moved and resized if the desktop (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Tweaks 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
Index: ui/aura_shell/shell.h
diff --git a/ui/aura_shell/shell.h b/ui/aura_shell/shell.h
index c7a2700e0038ae38c65a5fbe19dda76bbea289cf..36386b4997068b78c453b2381063ed2160867d4c 100644
--- a/ui/aura_shell/shell.h
+++ b/ui/aura_shell/shell.h
@@ -28,7 +28,10 @@ namespace aura_shell {
class Launcher;
class ShellDelegate;
-class WorkspaceManager;
+
+namespace internal {
+class WorkspaceController;
+}
// Shell is a singleton object that presents the Shell API and implements the
// Desktop's delegate interface.
@@ -73,7 +76,7 @@ class AURA_SHELL_EXPORT Shell : public aura::DesktopDelegate {
scoped_ptr<Launcher> launcher_;
- scoped_ptr<WorkspaceManager> workspace_manager_;
+ scoped_ptr<internal::WorkspaceController> workspace_controller_;
DISALLOW_COPY_AND_ASSIGN(Shell);
};

Powered by Google App Engine
This is Rietveld 408576698