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_MESSAGE_CENTER_MESSAGE_CENTER_STYLE_H_ | 5 #ifndef UI_MESSAGE_CENTER_MESSAGE_CENTER_STYLE_H_ |
6 #define UI_MESSAGE_CENTER_MESSAGE_CENTER_STYLE_H_ | 6 #define UI_MESSAGE_CENTER_MESSAGE_CENTER_STYLE_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/memory/scoped_ptr.h" | |
10 #include "base/values.h" | |
11 #include "third_party/skia/include/core/SkColor.h" | 9 #include "third_party/skia/include/core/SkColor.h" |
12 #include "ui/gfx/size.h" | 10 #include "ui/gfx/size.h" |
13 #include "ui/message_center/message_center_export.h" | 11 #include "ui/message_center/message_center_export.h" |
14 | 12 |
15 namespace message_center { | 13 namespace message_center { |
16 | 14 |
17 // Exported values ///////////////////////////////////////////////////////////// | 15 // Exported values ///////////////////////////////////////////////////////////// |
18 | 16 |
19 // Square image sizes in DIPs. | 17 // Square image sizes in DIPs. |
20 const int kNotificationButtonIconSize = 16; | 18 const int kNotificationButtonIconSize = 16; |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 | 129 |
132 extern const SkColor kShadowColor; // Shadow in the tray. | 130 extern const SkColor kShadowColor; // Shadow in the tray. |
133 | 131 |
134 extern const SkColor kMessageCenterBackgroundColor; | 132 extern const SkColor kMessageCenterBackgroundColor; |
135 extern const SkColor kFooterDelimiterColor; // Separator color for the tray. | 133 extern const SkColor kFooterDelimiterColor; // Separator color for the tray. |
136 extern const SkColor kFooterTextColor; // Text color for tray labels. | 134 extern const SkColor kFooterTextColor; // Text color for tray labels. |
137 | 135 |
138 } // namespace message_center | 136 } // namespace message_center |
139 | 137 |
140 #endif // UI_MESSAGE_CENTER_MESSAGE_CENTER_STYLE_H_ | 138 #endif // UI_MESSAGE_CENTER_MESSAGE_CENTER_STYLE_H_ |
OLD | NEW |