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" | |
9 #include "ui/aura/aura_export.h" | 8 #include "ui/aura/aura_export.h" |
10 #include "ui/aura/window.h" | 9 #include "ui/aura/window.h" |
11 #include "ui/base/ui_base_types.h" | 10 #include "ui/base/ui_base_types.h" |
12 | 11 |
13 namespace ui { | 12 namespace ui { |
14 class InputMethod; | 13 class InputMethod; |
15 } | 14 } |
16 | 15 |
17 namespace aura { | 16 namespace aura { |
18 namespace client { | 17 namespace client { |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 // See ui/base/ui_base_types.h for its definition. | 68 // See ui/base/ui_base_types.h for its definition. |
70 AURA_EXPORT extern const WindowProperty<ui::WindowShowState>* const | 69 AURA_EXPORT extern const WindowProperty<ui::WindowShowState>* const |
71 kShowStateKey; | 70 kShowStateKey; |
72 | 71 |
73 // The inset of the topmost view in the client view from the top of the | 72 // The inset of the topmost view in the client view from the top of the |
74 // non-client view. The topmost view depends on the window type. The topmost | 73 // non-client view. The topmost view depends on the window type. The topmost |
75 // view is the tab strip for tabbed browser windows, the toolbar for popups, | 74 // view is the tab strip for tabbed browser windows, the toolbar for popups, |
76 // the web contents for app windows and varies for fullscreen windows. | 75 // the web contents for app windows and varies for fullscreen windows. |
77 AURA_EXPORT extern const aura::WindowProperty<int>* const kTopViewInset; | 76 AURA_EXPORT extern const aura::WindowProperty<int>* const kTopViewInset; |
78 | 77 |
79 // The color of the window header. | |
80 AURA_EXPORT extern const aura::WindowProperty<SkColor>* const kTopViewColor; | |
81 | |
82 // A property key to store window icon. | 78 // A property key to store window icon. |
83 AURA_EXPORT extern const WindowProperty<gfx::ImageSkia*>* const kWindowIconKey; | 79 AURA_EXPORT extern const WindowProperty<gfx::ImageSkia*>* const kWindowIconKey; |
84 | 80 |
85 // Alphabetical sort. | 81 // Alphabetical sort. |
86 | 82 |
87 } // namespace client | 83 } // namespace client |
88 } // namespace aura | 84 } // namespace aura |
89 | 85 |
90 #endif // UI_AURA_CLIENT_AURA_CONSTANTS_H_ | 86 #endif // UI_AURA_CLIENT_AURA_CONSTANTS_H_ |
OLD | NEW |