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 "third_party/skia/include/core/SkColor.h" | 8 #include "third_party/skia/include/core/SkColor.h" |
9 #include "ui/app_list/app_list_export.h" | 9 #include "ui/app_list/app_list_export.h" |
10 #include "ui/base/resource/resource_bundle.h" | 10 #include "ui/base/resource/resource_bundle.h" |
(...skipping 25 matching lines...) Expand all Loading... |
36 APP_LIST_EXPORT extern const SkColor kResultDimmedTextColor; | 36 APP_LIST_EXPORT extern const SkColor kResultDimmedTextColor; |
37 APP_LIST_EXPORT extern const SkColor kResultURLTextColor; | 37 APP_LIST_EXPORT extern const SkColor kResultURLTextColor; |
38 | 38 |
39 APP_LIST_EXPORT extern const SkColor kGridTitleColor; | 39 APP_LIST_EXPORT extern const SkColor kGridTitleColor; |
40 | 40 |
41 APP_LIST_EXPORT extern const SkColor kFolderTitleColor; | 41 APP_LIST_EXPORT extern const SkColor kFolderTitleColor; |
42 APP_LIST_EXPORT extern const SkColor kFolderTitleHintTextColor; | 42 APP_LIST_EXPORT extern const SkColor kFolderTitleHintTextColor; |
43 APP_LIST_EXPORT extern const SkColor kFolderBubbleColor; | 43 APP_LIST_EXPORT extern const SkColor kFolderBubbleColor; |
44 APP_LIST_EXPORT extern const SkColor kFolderShadowColor; | 44 APP_LIST_EXPORT extern const SkColor kFolderShadowColor; |
45 APP_LIST_EXPORT extern const float kFolderBubbleRadius; | 45 APP_LIST_EXPORT extern const float kFolderBubbleRadius; |
46 APP_LIST_EXPORT extern const float kFolderShadowRadius; | 46 APP_LIST_EXPORT extern const float kFolderBubbleOffsetY; |
47 APP_LIST_EXPORT extern const float kFolderShadowOffsetY; | |
48 | 47 |
49 APP_LIST_EXPORT extern const SkColor kCardBackgroundColor; | 48 APP_LIST_EXPORT extern const SkColor kCardBackgroundColor; |
50 | 49 |
51 APP_LIST_EXPORT extern const int kPageTransitionDurationInMs; | 50 APP_LIST_EXPORT extern const int kPageTransitionDurationInMs; |
52 APP_LIST_EXPORT extern const int kOverscrollPageTransitionDurationMs; | 51 APP_LIST_EXPORT extern const int kOverscrollPageTransitionDurationMs; |
53 APP_LIST_EXPORT extern const int kFolderTransitionInDurationMs; | 52 APP_LIST_EXPORT extern const int kFolderTransitionInDurationMs; |
54 APP_LIST_EXPORT extern const int kFolderTransitionOutDurationMs; | 53 APP_LIST_EXPORT extern const int kFolderTransitionOutDurationMs; |
55 APP_LIST_EXPORT extern const int kCustomPageCollapsedHeight; | 54 APP_LIST_EXPORT extern const int kCustomPageCollapsedHeight; |
56 APP_LIST_EXPORT extern const gfx::Tween::Type kFolderFadeInTweenType; | 55 APP_LIST_EXPORT extern const gfx::Tween::Type kFolderFadeInTweenType; |
57 APP_LIST_EXPORT extern const gfx::Tween::Type kFolderFadeOutTweenType; | 56 APP_LIST_EXPORT extern const gfx::Tween::Type kFolderFadeOutTweenType; |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 | 91 |
93 // Returns the shadow values for a view at |z_height|. | 92 // Returns the shadow values for a view at |z_height|. |
94 gfx::ShadowValue APP_LIST_EXPORT GetShadowForZHeight(int z_height); | 93 gfx::ShadowValue APP_LIST_EXPORT GetShadowForZHeight(int z_height); |
95 | 94 |
96 const gfx::ShadowValues& APP_LIST_EXPORT IconStartShadows(); | 95 const gfx::ShadowValues& APP_LIST_EXPORT IconStartShadows(); |
97 const gfx::ShadowValues& APP_LIST_EXPORT IconEndShadows(); | 96 const gfx::ShadowValues& APP_LIST_EXPORT IconEndShadows(); |
98 | 97 |
99 } // namespace app_list | 98 } // namespace app_list |
100 | 99 |
101 #endif // UI_APP_LIST_APP_LIST_CONSTANTS_H_ | 100 #endif // UI_APP_LIST_APP_LIST_CONSTANTS_H_ |
OLD | NEW |