| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 APP_LIST_EXPORT extern const int kFolderTransitionOutDurationMs; | 56 APP_LIST_EXPORT extern const int kFolderTransitionOutDurationMs; |
| 57 APP_LIST_EXPORT extern const int kCustomPageCollapsedHeight; | 57 APP_LIST_EXPORT extern const int kCustomPageCollapsedHeight; |
| 58 APP_LIST_EXPORT extern const gfx::Tween::Type kFolderFadeInTweenType; | 58 APP_LIST_EXPORT extern const gfx::Tween::Type kFolderFadeInTweenType; |
| 59 APP_LIST_EXPORT extern const gfx::Tween::Type kFolderFadeOutTweenType; | 59 APP_LIST_EXPORT extern const gfx::Tween::Type kFolderFadeOutTweenType; |
| 60 | 60 |
| 61 APP_LIST_EXPORT extern const int kPreferredCols; | 61 APP_LIST_EXPORT extern const int kPreferredCols; |
| 62 APP_LIST_EXPORT extern const int kPreferredRows; | 62 APP_LIST_EXPORT extern const int kPreferredRows; |
| 63 APP_LIST_EXPORT extern const int kGridIconDimension; | 63 APP_LIST_EXPORT extern const int kGridIconDimension; |
| 64 | 64 |
| 65 APP_LIST_EXPORT extern const int kAppBadgeIconSize; | 65 APP_LIST_EXPORT extern const int kAppBadgeIconSize; |
| 66 APP_LIST_EXPORT extern const int kBadgeBackgroundRadius; |
| 66 | 67 |
| 67 APP_LIST_EXPORT extern const int kListIconSize; | 68 APP_LIST_EXPORT extern const int kListIconSize; |
| 68 APP_LIST_EXPORT extern const int kListBadgeIconSize; | 69 APP_LIST_EXPORT extern const int kListBadgeIconSize; |
| 69 APP_LIST_EXPORT extern const int kListBadgeIconOffsetX; | 70 APP_LIST_EXPORT extern const int kListBadgeIconOffsetX; |
| 70 APP_LIST_EXPORT extern const int kListBadgeIconOffsetY; | 71 APP_LIST_EXPORT extern const int kListBadgeIconOffsetY; |
| 71 APP_LIST_EXPORT extern const int kTileIconSize; | 72 APP_LIST_EXPORT extern const int kTileIconSize; |
| 72 | 73 |
| 73 APP_LIST_EXPORT extern const SkColor kIconColor; | 74 APP_LIST_EXPORT extern const SkColor kIconColor; |
| 74 | 75 |
| 75 APP_LIST_EXPORT extern const size_t kNumStartPageTiles; | 76 APP_LIST_EXPORT extern const size_t kNumStartPageTiles; |
| (...skipping 18 matching lines...) Expand all Loading... |
| 94 | 95 |
| 95 // Returns the shadow values for a view at |z_height|. | 96 // Returns the shadow values for a view at |z_height|. |
| 96 APP_LIST_EXPORT gfx::ShadowValue GetShadowForZHeight(int z_height); | 97 APP_LIST_EXPORT gfx::ShadowValue GetShadowForZHeight(int z_height); |
| 97 | 98 |
| 98 APP_LIST_EXPORT const gfx::ShadowValues& IconStartShadows(); | 99 APP_LIST_EXPORT const gfx::ShadowValues& IconStartShadows(); |
| 99 APP_LIST_EXPORT const gfx::ShadowValues& IconEndShadows(); | 100 APP_LIST_EXPORT const gfx::ShadowValues& IconEndShadows(); |
| 100 | 101 |
| 101 } // namespace app_list | 102 } // namespace app_list |
| 102 | 103 |
| 103 #endif // UI_APP_LIST_APP_LIST_CONSTANTS_H_ | 104 #endif // UI_APP_LIST_APP_LIST_CONSTANTS_H_ |
| OLD | NEW |