| 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 25 matching lines...) Expand all Loading... |
| 36 // Property set on all windows whose child windows' visibility changes are | 36 // Property set on all windows whose child windows' visibility changes are |
| 37 // animated. | 37 // animated. |
| 38 extern const aura::WindowProperty<bool>* const | 38 extern const aura::WindowProperty<bool>* const |
| 39 kChildWindowVisibilityChangesAnimatedKey; | 39 kChildWindowVisibilityChangesAnimatedKey; |
| 40 | 40 |
| 41 // True if the window is ignored by the shelf layout manager for purposes of | 41 // True if the window is ignored by the shelf layout manager for purposes of |
| 42 // darkening the shelf. | 42 // darkening the shelf. |
| 43 extern const aura::WindowProperty<bool>* const | 43 extern const aura::WindowProperty<bool>* const |
| 44 kIgnoredByShelfKey; | 44 kIgnoredByShelfKey; |
| 45 | 45 |
| 46 // Transient child's modal parent. | |
| 47 extern const aura::WindowProperty<aura::Window*>* const kModalParentKey; | |
| 48 | |
| 49 // Used to remember the show state before the window was minimized. | 46 // Used to remember the show state before the window was minimized. |
| 50 extern const aura::WindowProperty<ui::WindowShowState>* const | 47 extern const aura::WindowProperty<ui::WindowShowState>* const |
| 51 kRestoreShowStateKey; | 48 kRestoreShowStateKey; |
| 52 | 49 |
| 53 extern const aura::WindowProperty<RootWindowController*>* const | 50 extern const aura::WindowProperty<RootWindowController*>* const |
| 54 kRootWindowControllerKey; | 51 kRootWindowControllerKey; |
| 55 | 52 |
| 56 // A property key to remember the frame painter for the solo-window in the root | 53 // A property key to remember the frame painter for the solo-window in the root |
| 57 // window. It is only available for root windows. | 54 // window. It is only available for root windows. |
| 58 ASH_EXPORT extern const aura::WindowProperty<ash::FramePainter*>* const | 55 ASH_EXPORT extern const aura::WindowProperty<ash::FramePainter*>* const |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 // True if the window is controlled by the workspace manager. | 90 // True if the window is controlled by the workspace manager. |
| 94 extern const aura::WindowProperty<bool>* const | 91 extern const aura::WindowProperty<bool>* const |
| 95 kWindowTrackedByWorkspaceKey; | 92 kWindowTrackedByWorkspaceKey; |
| 96 | 93 |
| 97 // Alphabetical sort. | 94 // Alphabetical sort. |
| 98 | 95 |
| 99 } // namespace internal | 96 } // namespace internal |
| 100 } // namespace ash | 97 } // namespace ash |
| 101 | 98 |
| 102 #endif // ASH_WM_WINDOW_PROPERTIES_H_ | 99 #endif // ASH_WM_WINDOW_PROPERTIES_H_ |
| OLD | NEW |