| 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 "third_party/skia/include/core/SkColor.h" | 8 #include "third_party/skia/include/core/SkColor.h" |
| 9 #include "ui/aura/aura_export.h" | 9 #include "ui/aura/aura_export.h" |
| 10 #include "ui/aura/window.h" | 10 #include "ui/aura/window.h" |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 | 76 |
| 77 // The inset of the topmost view in the client view from the top of the | 77 // The inset of the topmost view in the client view from the top of the |
| 78 // non-client view. The topmost view depends on the window type. The topmost | 78 // non-client view. The topmost view depends on the window type. The topmost |
| 79 // view is the tab strip for tabbed browser windows, the toolbar for popups, | 79 // view is the tab strip for tabbed browser windows, the toolbar for popups, |
| 80 // the web contents for app windows and varies for fullscreen windows. | 80 // the web contents for app windows and varies for fullscreen windows. |
| 81 AURA_EXPORT extern const aura::WindowProperty<int>* const kTopViewInset; | 81 AURA_EXPORT extern const aura::WindowProperty<int>* const kTopViewInset; |
| 82 | 82 |
| 83 // The color of the window header. | 83 // The color of the window header. |
| 84 AURA_EXPORT extern const aura::WindowProperty<SkColor>* const kTopViewColor; | 84 AURA_EXPORT extern const aura::WindowProperty<SkColor>* const kTopViewColor; |
| 85 | 85 |
| 86 // A property key to store window icon. | 86 // A property key to store the window icon, typically 16x16 for title bars. |
| 87 AURA_EXPORT extern const WindowProperty<gfx::ImageSkia*>* const kWindowIconKey; | 87 AURA_EXPORT extern const WindowProperty<gfx::ImageSkia*>* const kWindowIconKey; |
| 88 | 88 |
| 89 // A property key to store the app icon, typically larger for shelf icons, etc. |
| 90 AURA_EXPORT extern const WindowProperty<gfx::ImageSkia*>* const kAppIconKey; |
| 91 |
| 89 // Alphabetical sort. | 92 // Alphabetical sort. |
| 90 | 93 |
| 91 } // namespace client | 94 } // namespace client |
| 92 } // namespace aura | 95 } // namespace aura |
| 93 | 96 |
| 94 #endif // UI_AURA_CLIENT_AURA_CONSTANTS_H_ | 97 #endif // UI_AURA_CLIENT_AURA_CONSTANTS_H_ |
| OLD | NEW |