| 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 APP_LIST_EXPORT extern const size_t kNumFolderTopItems; | 82 APP_LIST_EXPORT extern const size_t kNumFolderTopItems; |
| 83 APP_LIST_EXPORT extern const size_t kMaxFolderNameChars; | 83 APP_LIST_EXPORT extern const size_t kMaxFolderNameChars; |
| 84 | 84 |
| 85 APP_LIST_EXPORT extern const ui::ResourceBundle::FontStyle kItemTextFontStyle; | 85 APP_LIST_EXPORT extern const ui::ResourceBundle::FontStyle kItemTextFontStyle; |
| 86 | 86 |
| 87 APP_LIST_EXPORT extern const char kPageOpenedHistogram[]; | 87 APP_LIST_EXPORT extern const char kPageOpenedHistogram[]; |
| 88 APP_LIST_EXPORT extern const char kSearchResultOpenDisplayTypeHistogram[]; | 88 APP_LIST_EXPORT extern const char kSearchResultOpenDisplayTypeHistogram[]; |
| 89 APP_LIST_EXPORT extern const char kSearchQueryLength[]; | 89 APP_LIST_EXPORT extern const char kSearchQueryLength[]; |
| 90 APP_LIST_EXPORT extern const char kSearchResultDistanceFromOrigin[]; | 90 APP_LIST_EXPORT extern const char kSearchResultDistanceFromOrigin[]; |
| 91 | 91 |
| 92 #if defined(OS_LINUX) | |
| 93 // The WM_CLASS name for the app launcher window on Linux. | |
| 94 APP_LIST_EXPORT extern const char kAppListWMClass[]; | |
| 95 #endif | |
| 96 | |
| 97 // Returns the shadow values for a view at |z_height|. | 92 // Returns the shadow values for a view at |z_height|. |
| 98 APP_LIST_EXPORT gfx::ShadowValue GetShadowForZHeight(int z_height); | 93 APP_LIST_EXPORT gfx::ShadowValue GetShadowForZHeight(int z_height); |
| 99 | 94 |
| 100 APP_LIST_EXPORT const gfx::ShadowValues& IconStartShadows(); | 95 APP_LIST_EXPORT const gfx::ShadowValues& IconStartShadows(); |
| 101 APP_LIST_EXPORT const gfx::ShadowValues& IconEndShadows(); | 96 APP_LIST_EXPORT const gfx::ShadowValues& IconEndShadows(); |
| 102 | 97 |
| 103 } // namespace app_list | 98 } // namespace app_list |
| 104 | 99 |
| 105 #endif // UI_APP_LIST_APP_LIST_CONSTANTS_H_ | 100 #endif // UI_APP_LIST_APP_LIST_CONSTANTS_H_ |
| OLD | NEW |