Chromium Code Reviews| 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 |