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

Unified Diff: ui/aura/window.h

Issue 7890054: Adds code for a new Aura shell. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 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/desktop.cc ('k') | ui/aura/window.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/aura/window.h
===================================================================
--- ui/aura/window.h (revision 101422)
+++ ui/aura/window.h (working copy)
@@ -25,6 +25,7 @@
class Desktop;
class KeyEvent;
+class LayoutManager;
class MouseEvent;
class WindowDelegate;
class WindowManager;
@@ -65,6 +66,8 @@
void SetVisibility(Visibility visibility);
Visibility visibility() const { return visibility_; }
+ void SetLayoutManager(LayoutManager* layout_manager);
+
// Changes the bounds of the window.
void SetBounds(const gfx::Rect& bounds, int anim_ms);
const gfx::Rect& bounds() const { return bounds_; }
@@ -155,6 +158,7 @@
int id_;
scoped_ptr<WindowManager> window_manager_;
+ scoped_ptr<LayoutManager> layout_manager_;
void* user_data_;
« no previous file with comments | « ui/aura/desktop.cc ('k') | ui/aura/window.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698