| 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_APP_LIST_APP_LIST_CONSTANTS_H_ | 5 #ifndef UI_APP_LIST_APP_LIST_CONSTANTS_H_ |
| 6 #define UI_APP_LIST_APP_LIST_CONSTANTS_H_ | 6 #define UI_APP_LIST_APP_LIST_CONSTANTS_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 APP_LIST_EXPORT extern const SkColor kPagerHoverColor; | 33 APP_LIST_EXPORT extern const SkColor kPagerHoverColor; |
| 34 APP_LIST_EXPORT extern const SkColor kPagerNormalColor; | 34 APP_LIST_EXPORT extern const SkColor kPagerNormalColor; |
| 35 APP_LIST_EXPORT extern const SkColor kPagerSelectedColor; | 35 APP_LIST_EXPORT extern const SkColor kPagerSelectedColor; |
| 36 | 36 |
| 37 APP_LIST_EXPORT extern const SkColor kResultBorderColor; | 37 APP_LIST_EXPORT extern const SkColor kResultBorderColor; |
| 38 APP_LIST_EXPORT extern const SkColor kResultDefaultTextColor; | 38 APP_LIST_EXPORT extern const SkColor kResultDefaultTextColor; |
| 39 APP_LIST_EXPORT extern const SkColor kResultDimmedTextColor; | 39 APP_LIST_EXPORT extern const SkColor kResultDimmedTextColor; |
| 40 APP_LIST_EXPORT extern const SkColor kResultURLTextColor; | 40 APP_LIST_EXPORT extern const SkColor kResultURLTextColor; |
| 41 | 41 |
| 42 APP_LIST_EXPORT extern const SkColor kGridTitleColor; | 42 APP_LIST_EXPORT extern const SkColor kGridTitleColor; |
| 43 APP_LIST_EXPORT extern const SkColor kGridTitleColorFullscreen; |
| 44 |
| 45 APP_LIST_EXPORT extern const int kGridTileWidth; |
| 46 APP_LIST_EXPORT extern const int kGridTileHeight; |
| 47 APP_LIST_EXPORT extern const int kGridIconTopPadding; |
| 48 APP_LIST_EXPORT extern const int kGridTitleSpacing; |
| 49 APP_LIST_EXPORT extern const int kGridTitleHorizontalPadding; |
| 43 | 50 |
| 44 APP_LIST_EXPORT extern const SkColor kFolderTitleColor; | 51 APP_LIST_EXPORT extern const SkColor kFolderTitleColor; |
| 45 APP_LIST_EXPORT extern const SkColor kFolderTitleHintTextColor; | 52 APP_LIST_EXPORT extern const SkColor kFolderTitleHintTextColor; |
| 46 APP_LIST_EXPORT extern const SkColor kFolderBubbleColor; | 53 APP_LIST_EXPORT extern const SkColor kFolderBubbleColor; |
| 47 APP_LIST_EXPORT extern const SkColor kFolderShadowColor; | 54 APP_LIST_EXPORT extern const SkColor kFolderShadowColor; |
| 48 APP_LIST_EXPORT extern const float kFolderBubbleRadius; | 55 APP_LIST_EXPORT extern const float kFolderBubbleRadius; |
| 49 APP_LIST_EXPORT extern const float kFolderBubbleOffsetY; | 56 APP_LIST_EXPORT extern const float kFolderBubbleOffsetY; |
| 50 | 57 |
| 51 APP_LIST_EXPORT extern const SkColor kCardBackgroundColor; | 58 APP_LIST_EXPORT extern const SkColor kCardBackgroundColor; |
| 52 | 59 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 | 102 |
| 96 // Returns the shadow values for a view at |z_height|. | 103 // Returns the shadow values for a view at |z_height|. |
| 97 APP_LIST_EXPORT gfx::ShadowValue GetShadowForZHeight(int z_height); | 104 APP_LIST_EXPORT gfx::ShadowValue GetShadowForZHeight(int z_height); |
| 98 | 105 |
| 99 APP_LIST_EXPORT const gfx::ShadowValues& IconStartShadows(); | 106 APP_LIST_EXPORT const gfx::ShadowValues& IconStartShadows(); |
| 100 APP_LIST_EXPORT const gfx::ShadowValues& IconEndShadows(); | 107 APP_LIST_EXPORT const gfx::ShadowValues& IconEndShadows(); |
| 101 | 108 |
| 102 } // namespace app_list | 109 } // namespace app_list |
| 103 | 110 |
| 104 #endif // UI_APP_LIST_APP_LIST_CONSTANTS_H_ | 111 #endif // UI_APP_LIST_APP_LIST_CONSTANTS_H_ |
| OLD | NEW |