| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 int kCenteredPreferredCols; | 73 APP_LIST_EXPORT extern const int kCenteredPreferredCols; |
| 74 APP_LIST_EXPORT extern const int kCenteredPreferredRows; | 74 APP_LIST_EXPORT extern const int kCenteredPreferredRows; |
| 75 | 75 |
| 76 APP_LIST_EXPORT extern const int kExperimentalPreferredCols; | 76 APP_LIST_EXPORT extern const int kExperimentalPreferredCols; |
| 77 APP_LIST_EXPORT extern const int kExperimentalPreferredRows; | 77 APP_LIST_EXPORT extern const int kExperimentalPreferredRows; |
| 78 | 78 |
| 79 APP_LIST_EXPORT extern const size_t kNumStartPageTiles; |
| 80 APP_LIST_EXPORT extern const size_t kMaxSearchResults; |
| 81 |
| 79 APP_LIST_EXPORT extern const int kReorderDroppingCircleRadius; | 82 APP_LIST_EXPORT extern const int kReorderDroppingCircleRadius; |
| 80 | 83 |
| 81 APP_LIST_EXPORT extern const int kExperimentalAppsGridPadding; | 84 APP_LIST_EXPORT extern const int kExperimentalAppsGridPadding; |
| 82 APP_LIST_EXPORT extern const int kExperimentalSearchBoxPadding; | 85 APP_LIST_EXPORT extern const int kExperimentalSearchBoxPadding; |
| 83 | 86 |
| 84 APP_LIST_EXPORT extern size_t kMaxFolderItems; | 87 APP_LIST_EXPORT extern size_t kMaxFolderItems; |
| 85 APP_LIST_EXPORT extern const size_t kNumFolderTopItems; | 88 APP_LIST_EXPORT extern const size_t kNumFolderTopItems; |
| 86 APP_LIST_EXPORT extern const size_t kMaxFolderNameChars; | 89 APP_LIST_EXPORT extern const size_t kMaxFolderNameChars; |
| 87 | 90 |
| 88 APP_LIST_EXPORT extern const ui::ResourceBundle::FontStyle kItemTextFontStyle; | 91 APP_LIST_EXPORT extern const ui::ResourceBundle::FontStyle kItemTextFontStyle; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 99 | 102 |
| 100 // Returns the shadow values for a view at |z_height|. | 103 // Returns the shadow values for a view at |z_height|. |
| 101 APP_LIST_EXPORT gfx::ShadowValue GetShadowForZHeight(int z_height); | 104 APP_LIST_EXPORT gfx::ShadowValue GetShadowForZHeight(int z_height); |
| 102 | 105 |
| 103 APP_LIST_EXPORT const gfx::ShadowValues& IconStartShadows(); | 106 APP_LIST_EXPORT const gfx::ShadowValues& IconStartShadows(); |
| 104 APP_LIST_EXPORT const gfx::ShadowValues& IconEndShadows(); | 107 APP_LIST_EXPORT const gfx::ShadowValues& IconEndShadows(); |
| 105 | 108 |
| 106 } // namespace app_list | 109 } // namespace app_list |
| 107 | 110 |
| 108 #endif // UI_APP_LIST_APP_LIST_CONSTANTS_H_ | 111 #endif // UI_APP_LIST_APP_LIST_CONSTANTS_H_ |
| OLD | NEW |