| 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 UI_AURA_CLIENT_AURA_CONSTANTS_H_ | 5 #ifndef UI_AURA_CLIENT_AURA_CONSTANTS_H_ |
| 6 #define UI_AURA_CLIENT_AURA_CONSTANTS_H_ | 6 #define UI_AURA_CLIENT_AURA_CONSTANTS_H_ |
| 7 | 7 |
| 8 #include "ui/aura/aura_export.h" | 8 #include "ui/aura/aura_export.h" |
| 9 #include "ui/aura/window.h" | 9 #include "ui/aura/window.h" |
| 10 #include "ui/base/ui_base_types.h" | 10 #include "ui/base/ui_base_types.h" |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 AURA_EXPORT extern const WindowProperty<ui::ModalType>* const kModalKey; | 49 AURA_EXPORT extern const WindowProperty<ui::ModalType>* const kModalKey; |
| 50 | 50 |
| 51 // A property key to store the restore bounds for a window. | 51 // A property key to store the restore bounds for a window. |
| 52 AURA_EXPORT extern const WindowProperty<gfx::Rect*>* const kRestoreBoundsKey; | 52 AURA_EXPORT extern const WindowProperty<gfx::Rect*>* const kRestoreBoundsKey; |
| 53 | 53 |
| 54 // A property key to store ui::WindowShowState for restoring a window. | 54 // A property key to store ui::WindowShowState for restoring a window. |
| 55 // Used in Ash to remember the show state before the window was minimized. | 55 // Used in Ash to remember the show state before the window was minimized. |
| 56 AURA_EXPORT extern const WindowProperty<ui::WindowShowState>* const | 56 AURA_EXPORT extern const WindowProperty<ui::WindowShowState>* const |
| 57 kRestoreShowStateKey; | 57 kRestoreShowStateKey; |
| 58 | 58 |
| 59 // A property key to store an input method object that handles a key event. | |
| 60 AURA_EXPORT extern const WindowProperty<ui::InputMethod*>* const | |
| 61 kRootWindowInputMethodKey; | |
| 62 | |
| 63 // A property key to store ui::WindowShowState for a window. | 59 // A property key to store ui::WindowShowState for a window. |
| 64 // See ui/base/ui_base_types.h for its definition. | 60 // See ui/base/ui_base_types.h for its definition. |
| 65 AURA_EXPORT extern const WindowProperty<ui::WindowShowState>* const | 61 AURA_EXPORT extern const WindowProperty<ui::WindowShowState>* const |
| 66 kShowStateKey; | 62 kShowStateKey; |
| 67 | 63 |
| 68 // Alphabetical sort. | 64 // Alphabetical sort. |
| 69 | 65 |
| 70 } // namespace client | 66 } // namespace client |
| 71 } // namespace aura | 67 } // namespace aura |
| 72 | 68 |
| 73 #endif // UI_AURA_CLIENT_AURA_CONSTANTS_H_ | 69 #endif // UI_AURA_CLIENT_AURA_CONSTANTS_H_ |
| OLD | NEW |