| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 // See ui/base/ui_base_types.h for its definition. | 64 // See ui/base/ui_base_types.h for its definition. |
| 65 AURA_EXPORT extern const WindowProperty<ui::WindowShowState>* const | 65 AURA_EXPORT extern const WindowProperty<ui::WindowShowState>* const |
| 66 kShowStateKey; | 66 kShowStateKey; |
| 67 | 67 |
| 68 // The inset of the topmost view in the client view from the top of the | 68 // The inset of the topmost view in the client view from the top of the |
| 69 // non-client view. The topmost view depends on the window type. The topmost | 69 // non-client view. The topmost view depends on the window type. The topmost |
| 70 // view is the tab strip for tabbed browser windows, the toolbar for popups, | 70 // view is the tab strip for tabbed browser windows, the toolbar for popups, |
| 71 // the web contents for app windows and varies for fullscreen windows. | 71 // the web contents for app windows and varies for fullscreen windows. |
| 72 AURA_EXPORT extern const aura::WindowProperty<int>* const kTopViewInset; | 72 AURA_EXPORT extern const aura::WindowProperty<int>* const kTopViewInset; |
| 73 | 73 |
| 74 // A property key to store window icon. |
| 75 AURA_EXPORT extern const WindowProperty<gfx::ImageSkia*>* const kWindowIconKey; |
| 76 |
| 74 // Alphabetical sort. | 77 // Alphabetical sort. |
| 75 | 78 |
| 76 } // namespace client | 79 } // namespace client |
| 77 } // namespace aura | 80 } // namespace aura |
| 78 | 81 |
| 79 #endif // UI_AURA_CLIENT_AURA_CONSTANTS_H_ | 82 #endif // UI_AURA_CLIENT_AURA_CONSTANTS_H_ |
| OLD | NEW |