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