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

Unified Diff: ui/aura/client/aura_constants.h

Issue 11085053: Improving window auto management between workspaces (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Improved the entire window (auto) management Created 8 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/client/aura_constants.h
diff --git a/ui/aura/client/aura_constants.h b/ui/aura/client/aura_constants.h
index 254ecf09ecb9b9c33bfc636610cf4af71265aeee..17fefaaf843ad2b6cca040217c68f2081d414d98 100644
--- a/ui/aura/client/aura_constants.h
+++ b/ui/aura/client/aura_constants.h
@@ -45,6 +45,16 @@ AURA_EXPORT extern const WindowProperty<gfx::Rect*>* const kRestoreBoundsKey;
AURA_EXPORT extern const WindowProperty<ui::InputMethod*>* const
kRootWindowInputMethodKey;
+// A property key to remember if a windows position or size was changed by a
+// user.
+AURA_EXPORT extern const WindowProperty<bool>* const
sky 2012/10/11 19:50:54 These should be in ash.
Mr4D (OOO till 08-26) 2012/10/12 00:29:18 Done.
+ kUserChangedWindowPositionOrSizeKey;
+
+// A property key to remember if a windows position can be managed by the
+// workspace manager or not.
+AURA_EXPORT extern const WindowProperty<bool>* const
+ kWindowPositionManageableKey;
+
// A property key to store ui::WindowShowState for a window.
// See ui/base/ui_base_types.h for its definition.
AURA_EXPORT extern const WindowProperty<ui::WindowShowState>* const

Powered by Google App Engine
This is Rietveld 408576698