| 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 11 matching lines...) Expand all Loading... |
| 22 | 22 |
| 23 // Shell-specific window property keys. | 23 // Shell-specific window property keys. |
| 24 | 24 |
| 25 // Alphabetical sort. | 25 // Alphabetical sort. |
| 26 | 26 |
| 27 // A Key to store AlwaysOnTopController per RootWindow. The value is | 27 // A Key to store AlwaysOnTopController per RootWindow. The value is |
| 28 // owned by the RootWindow. | 28 // owned by the RootWindow. |
| 29 extern const aura::WindowProperty<internal::AlwaysOnTopController*>* const | 29 extern const aura::WindowProperty<internal::AlwaysOnTopController*>* const |
| 30 kAlwaysOnTopControllerKey; | 30 kAlwaysOnTopControllerKey; |
| 31 | 31 |
| 32 // A property key to indicate that an in progress drag should be continued |
| 33 // after the window is reparented to another container. |
| 34 extern const aura::WindowProperty<bool>* const kContinueDragAfterReparent; |
| 35 |
| 32 // A property key to indicate that the user is cycling through workspaces. | 36 // A property key to indicate that the user is cycling through workspaces. |
| 33 // The property should only be set on the root window. | 37 // The property should only be set on the root window. |
| 34 ASH_EXPORT extern const aura::WindowProperty<bool>* const | 38 ASH_EXPORT extern const aura::WindowProperty<bool>* const |
| 35 kCyclingThroughWorkspacesKey; | 39 kCyclingThroughWorkspacesKey; |
| 36 | 40 |
| 37 // A property key to disable the frame painter policy for solo windows. | 41 // A property key to disable the frame painter policy for solo windows. |
| 38 // It is only available for root windows. | 42 // It is only available for root windows. |
| 39 ASH_EXPORT extern const aura::WindowProperty<bool>* const | 43 ASH_EXPORT extern const aura::WindowProperty<bool>* const |
| 40 kIgnoreSoloWindowFramePainterPolicy; | 44 kIgnoreSoloWindowFramePainterPolicy; |
| 41 | 45 |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 // True if the window is controlled by the workspace manager. | 101 // True if the window is controlled by the workspace manager. |
| 98 extern const aura::WindowProperty<bool>* const | 102 extern const aura::WindowProperty<bool>* const |
| 99 kWindowTrackedByWorkspaceKey; | 103 kWindowTrackedByWorkspaceKey; |
| 100 | 104 |
| 101 // Alphabetical sort. | 105 // Alphabetical sort. |
| 102 | 106 |
| 103 } // namespace internal | 107 } // namespace internal |
| 104 } // namespace ash | 108 } // namespace ash |
| 105 | 109 |
| 106 #endif // ASH_WM_WINDOW_PROPERTIES_H_ | 110 #endif // ASH_WM_WINDOW_PROPERTIES_H_ |
| OLD | NEW |