| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 // darkening the shelf. | 47 // darkening the shelf. |
| 48 extern const aura::WindowProperty<bool>* const | 48 extern const aura::WindowProperty<bool>* const |
| 49 kIgnoredByShelfKey; | 49 kIgnoredByShelfKey; |
| 50 | 50 |
| 51 // True if this is a browser window in immersive mode. | 51 // True if this is a browser window in immersive mode. |
| 52 ASH_EXPORT extern const aura::WindowProperty<bool>* const kImmersiveModeKey; | 52 ASH_EXPORT extern const aura::WindowProperty<bool>* const kImmersiveModeKey; |
| 53 | 53 |
| 54 // True if this window is an attached panel. | 54 // True if this window is an attached panel. |
| 55 ASH_EXPORT extern const aura::WindowProperty<bool>* const kPanelAttachedKey; | 55 ASH_EXPORT extern const aura::WindowProperty<bool>* const kPanelAttachedKey; |
| 56 | 56 |
| 57 // True if there is a pending immersive gesture occurance for this window. |
| 58 ASH_EXPORT extern const aura::WindowProperty<bool>* const |
| 59 kPendingImmersiveGestureKey; |
| 60 |
| 57 // Used to remember the show state before the window was minimized. | 61 // Used to remember the show state before the window was minimized. |
| 58 extern const aura::WindowProperty<ui::WindowShowState>* const | 62 extern const aura::WindowProperty<ui::WindowShowState>* const |
| 59 kRestoreShowStateKey; | 63 kRestoreShowStateKey; |
| 60 | 64 |
| 61 extern const aura::WindowProperty<RootWindowController*>* const | 65 extern const aura::WindowProperty<RootWindowController*>* const |
| 62 kRootWindowControllerKey; | 66 kRootWindowControllerKey; |
| 63 | 67 |
| 64 // RootWindow property to indicate if the window in the active workspace should | 68 // RootWindow property to indicate if the window in the active workspace should |
| 65 // use the transparent "solo-window" header style. | 69 // use the transparent "solo-window" header style. |
| 66 ASH_EXPORT extern const aura::WindowProperty<bool>* const | 70 ASH_EXPORT extern const aura::WindowProperty<bool>* const |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 // True if the window is controlled by the workspace manager. | 105 // True if the window is controlled by the workspace manager. |
| 102 extern const aura::WindowProperty<bool>* const | 106 extern const aura::WindowProperty<bool>* const |
| 103 kWindowTrackedByWorkspaceKey; | 107 kWindowTrackedByWorkspaceKey; |
| 104 | 108 |
| 105 // Alphabetical sort. | 109 // Alphabetical sort. |
| 106 | 110 |
| 107 } // namespace internal | 111 } // namespace internal |
| 108 } // namespace ash | 112 } // namespace ash |
| 109 | 113 |
| 110 #endif // ASH_WM_WINDOW_PROPERTIES_H_ | 114 #endif // ASH_WM_WINDOW_PROPERTIES_H_ |
| OLD | NEW |