| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|   64  |   64  | 
|   65 APP_LIST_EXPORT extern const int kListIconSize; |   65 APP_LIST_EXPORT extern const int kListIconSize; | 
|   66 APP_LIST_EXPORT extern const int kListBadgeIconSize; |   66 APP_LIST_EXPORT extern const int kListBadgeIconSize; | 
|   67 APP_LIST_EXPORT extern const int kListBadgeIconOffsetX; |   67 APP_LIST_EXPORT extern const int kListBadgeIconOffsetX; | 
|   68 APP_LIST_EXPORT extern const int kListBadgeIconOffsetY; |   68 APP_LIST_EXPORT extern const int kListBadgeIconOffsetY; | 
|   69 APP_LIST_EXPORT extern const int kTileIconSize; |   69 APP_LIST_EXPORT extern const int kTileIconSize; | 
|   70  |   70  | 
|   71 APP_LIST_EXPORT extern const SkColor kIconColor; |   71 APP_LIST_EXPORT extern const SkColor kIconColor; | 
|   72  |   72  | 
|   73 APP_LIST_EXPORT extern const size_t kNumStartPageTiles; |   73 APP_LIST_EXPORT extern const size_t kNumStartPageTiles; | 
 |   74 APP_LIST_EXPORT extern const size_t kNumStartPageTilesFullscreen; | 
|   74 APP_LIST_EXPORT extern const size_t kMaxSearchResults; |   75 APP_LIST_EXPORT extern const size_t kMaxSearchResults; | 
|   75  |   76  | 
|   76 APP_LIST_EXPORT extern const int kReorderDroppingCircleRadius; |   77 APP_LIST_EXPORT extern const int kReorderDroppingCircleRadius; | 
|   77  |   78  | 
|   78 APP_LIST_EXPORT extern const int kAppsGridPadding; |   79 APP_LIST_EXPORT extern const int kAppsGridPadding; | 
|   79 APP_LIST_EXPORT extern const int kSearchBoxPadding; |   80 APP_LIST_EXPORT extern const int kSearchBoxPadding; | 
|   80  |   81  | 
|   81 APP_LIST_EXPORT extern size_t kMaxFolderItems; |   82 APP_LIST_EXPORT extern size_t kMaxFolderItems; | 
|   82 APP_LIST_EXPORT extern const size_t kNumFolderTopItems; |   83 APP_LIST_EXPORT extern const size_t kNumFolderTopItems; | 
|   83 APP_LIST_EXPORT extern const size_t kMaxFolderNameChars; |   84 APP_LIST_EXPORT extern const size_t kMaxFolderNameChars; | 
|   84  |   85  | 
|   85 APP_LIST_EXPORT extern const ui::ResourceBundle::FontStyle kItemTextFontStyle; |   86 APP_LIST_EXPORT extern const ui::ResourceBundle::FontStyle kItemTextFontStyle; | 
|   86  |   87  | 
|   87 APP_LIST_EXPORT extern const char kPageOpenedHistogram[]; |   88 APP_LIST_EXPORT extern const char kPageOpenedHistogram[]; | 
|   88 APP_LIST_EXPORT extern const char kSearchResultOpenDisplayTypeHistogram[]; |   89 APP_LIST_EXPORT extern const char kSearchResultOpenDisplayTypeHistogram[]; | 
|   89 APP_LIST_EXPORT extern const char kSearchQueryLength[]; |   90 APP_LIST_EXPORT extern const char kSearchQueryLength[]; | 
|   90 APP_LIST_EXPORT extern const char kSearchResultDistanceFromOrigin[]; |   91 APP_LIST_EXPORT extern const char kSearchResultDistanceFromOrigin[]; | 
|   91  |   92  | 
|   92 // Returns the shadow values for a view at |z_height|. |   93 // Returns the shadow values for a view at |z_height|. | 
|   93 APP_LIST_EXPORT gfx::ShadowValue GetShadowForZHeight(int z_height); |   94 APP_LIST_EXPORT gfx::ShadowValue GetShadowForZHeight(int z_height); | 
|   94  |   95  | 
|   95 APP_LIST_EXPORT const gfx::ShadowValues& IconStartShadows(); |   96 APP_LIST_EXPORT const gfx::ShadowValues& IconStartShadows(); | 
|   96 APP_LIST_EXPORT const gfx::ShadowValues& IconEndShadows(); |   97 APP_LIST_EXPORT const gfx::ShadowValues& IconEndShadows(); | 
|   97  |   98  | 
|   98 }  // namespace app_list |   99 }  // namespace app_list | 
|   99  |  100  | 
|  100 #endif  // UI_APP_LIST_APP_LIST_CONSTANTS_H_ |  101 #endif  // UI_APP_LIST_APP_LIST_CONSTANTS_H_ | 
| OLD | NEW |