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

Unified Diff: ash/ash_constants.h

Issue 11085053: Improving window auto management between workspaces (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed as requested. Corner cases will have to be addressed as they show 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: ash/ash_constants.h
diff --git a/ash/ash_constants.h b/ash/ash_constants.h
index ad12a6f7b41b58efe67b209cda11414cfeb68d4c..b936b18f7bb781754e905aa0da8783add35b4344 100644
--- a/ash/ash_constants.h
+++ b/ash/ash_constants.h
@@ -16,10 +16,20 @@ namespace ash {
ASH_EXPORT extern const aura::WindowProperty<bool>* const
kConstrainedWindowKey;
+// A property key to remember if a windows position or size was changed by a
+// user.
+ASH_EXPORT extern const aura::WindowProperty<bool>* const
sky 2012/10/16 17:25:34 Move these constants to ash/wm/window_properties.
Mr4D (OOO till 08-26) 2012/10/16 19:00:28 Done.
+ kUserChangedWindowPositionOrSizeKey;
+
// In the window corners, the resize areas don't actually expand bigger, but the
// 16 px at the end of each edge triggers diagonal resizing.
ASH_EXPORT extern const int kResizeAreaCornerSize;
+// A property key to remember if a windows position can be managed by the
+// workspace manager or not.
+ASH_EXPORT extern const aura::WindowProperty<bool>* const
+ kWindowPositionManagedKey;
+
// Ash windows do not have a traditional visible window frame. Window content
// extends to the edge of the window. We consider a small region outside the
// window bounds and an even smaller region overlapping the window to be the

Powered by Google App Engine
This is Rietveld 408576698