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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 APP_LIST_EXPORT extern const size_t kNumFolderTopItems; | 93 APP_LIST_EXPORT extern const size_t kNumFolderTopItems; |
94 APP_LIST_EXPORT extern const size_t kMaxFolderNameChars; | 94 APP_LIST_EXPORT extern const size_t kMaxFolderNameChars; |
95 | 95 |
96 APP_LIST_EXPORT extern const ui::ResourceBundle::FontStyle kItemTextFontStyle; | 96 APP_LIST_EXPORT extern const ui::ResourceBundle::FontStyle kItemTextFontStyle; |
97 | 97 |
98 APP_LIST_EXPORT extern const char kPageOpenedHistogram[]; | 98 APP_LIST_EXPORT extern const char kPageOpenedHistogram[]; |
99 APP_LIST_EXPORT extern const char kSearchResultOpenDisplayTypeHistogram[]; | 99 APP_LIST_EXPORT extern const char kSearchResultOpenDisplayTypeHistogram[]; |
100 APP_LIST_EXPORT extern const char kSearchQueryLength[]; | 100 APP_LIST_EXPORT extern const char kSearchQueryLength[]; |
101 APP_LIST_EXPORT extern const char kSearchResultDistanceFromOrigin[]; | 101 APP_LIST_EXPORT extern const char kSearchResultDistanceFromOrigin[]; |
102 | 102 |
| 103 APP_LIST_EXPORT extern const int kSearchTileHeight; |
| 104 |
103 // Returns the shadow values for a view at |z_height|. | 105 // Returns the shadow values for a view at |z_height|. |
104 APP_LIST_EXPORT gfx::ShadowValue GetShadowForZHeight(int z_height); | 106 APP_LIST_EXPORT gfx::ShadowValue GetShadowForZHeight(int z_height); |
105 | 107 |
106 APP_LIST_EXPORT const gfx::ShadowValues& IconStartShadows(); | 108 APP_LIST_EXPORT const gfx::ShadowValues& IconStartShadows(); |
107 APP_LIST_EXPORT const gfx::ShadowValues& IconEndShadows(); | 109 APP_LIST_EXPORT const gfx::ShadowValues& IconEndShadows(); |
108 | 110 |
109 } // namespace app_list | 111 } // namespace app_list |
110 | 112 |
111 #endif // UI_APP_LIST_APP_LIST_CONSTANTS_H_ | 113 #endif // UI_APP_LIST_APP_LIST_CONSTANTS_H_ |
OLD | NEW |