| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef ASH_WM_WINDOW_PROPERTIES_H_ | 5 #ifndef ASH_WM_WINDOW_PROPERTIES_H_ |
| 6 #define ASH_WM_WINDOW_PROPERTIES_H_ | 6 #define ASH_WM_WINDOW_PROPERTIES_H_ |
| 7 | 7 |
| 8 #include "ash/ash_export.h" | 8 #include "ash/ash_export.h" |
| 9 #include "ash/wm/property_util.h" | 9 #include "ash/wm/property_util.h" |
| 10 #include "ui/aura/window.h" | 10 #include "ui/aura/window.h" |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 | 26 |
| 27 // Shell-specific window property keys. | 27 // Shell-specific window property keys. |
| 28 | 28 |
| 29 // Alphabetical sort. | 29 // Alphabetical sort. |
| 30 | 30 |
| 31 // A Key to store AlwaysOnTopController per RootWindow. The value is | 31 // A Key to store AlwaysOnTopController per RootWindow. The value is |
| 32 // owned by the RootWindow. | 32 // owned by the RootWindow. |
| 33 extern const aura::WindowProperty<internal::AlwaysOnTopController*>* const | 33 extern const aura::WindowProperty<internal::AlwaysOnTopController*>* const |
| 34 kAlwaysOnTopControllerKey; | 34 kAlwaysOnTopControllerKey; |
| 35 | 35 |
| 36 // Property set on all windows whose child windows' visibility changes are | |
| 37 // animated. | |
| 38 extern const aura::WindowProperty<bool>* const | |
| 39 kChildWindowVisibilityChangesAnimatedKey; | |
| 40 | |
| 41 // True if the window is ignored by the shelf layout manager for purposes of | 36 // True if the window is ignored by the shelf layout manager for purposes of |
| 42 // darkening the shelf. | 37 // darkening the shelf. |
| 43 extern const aura::WindowProperty<bool>* const | 38 extern const aura::WindowProperty<bool>* const |
| 44 kIgnoredByShelfKey; | 39 kIgnoredByShelfKey; |
| 45 | 40 |
| 46 // Used to remember the show state before the window was minimized. | 41 // Used to remember the show state before the window was minimized. |
| 47 extern const aura::WindowProperty<ui::WindowShowState>* const | 42 extern const aura::WindowProperty<ui::WindowShowState>* const |
| 48 kRestoreShowStateKey; | 43 kRestoreShowStateKey; |
| 49 | 44 |
| 50 extern const aura::WindowProperty<RootWindowController*>* const | 45 extern const aura::WindowProperty<RootWindowController*>* const |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 // True if the window is controlled by the workspace manager. | 85 // True if the window is controlled by the workspace manager. |
| 91 extern const aura::WindowProperty<bool>* const | 86 extern const aura::WindowProperty<bool>* const |
| 92 kWindowTrackedByWorkspaceKey; | 87 kWindowTrackedByWorkspaceKey; |
| 93 | 88 |
| 94 // Alphabetical sort. | 89 // Alphabetical sort. |
| 95 | 90 |
| 96 } // namespace internal | 91 } // namespace internal |
| 97 } // namespace ash | 92 } // namespace ash |
| 98 | 93 |
| 99 #endif // ASH_WM_WINDOW_PROPERTIES_H_ | 94 #endif // ASH_WM_WINDOW_PROPERTIES_H_ |
| OLD | NEW |