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 "third_party/skia/include/core/SkColor.h" | 8 #include "third_party/skia/include/core/SkColor.h" |
9 #include "ui/app_list/app_list_export.h" | 9 #include "ui/app_list/app_list_export.h" |
10 #include "ui/base/resource/resource_bundle.h" | 10 #include "ui/base/resource/resource_bundle.h" |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 APP_LIST_EXPORT extern const int kExperimentalSearchBoxPadding; | 76 APP_LIST_EXPORT extern const int kExperimentalSearchBoxPadding; |
77 | 77 |
78 APP_LIST_EXPORT extern size_t kMaxFolderItems; | 78 APP_LIST_EXPORT extern size_t kMaxFolderItems; |
79 APP_LIST_EXPORT extern const size_t kNumFolderTopItems; | 79 APP_LIST_EXPORT extern const size_t kNumFolderTopItems; |
80 APP_LIST_EXPORT extern const size_t kMaxFolderNameChars; | 80 APP_LIST_EXPORT extern const size_t kMaxFolderNameChars; |
81 | 81 |
82 APP_LIST_EXPORT extern const ui::ResourceBundle::FontStyle kItemTextFontStyle; | 82 APP_LIST_EXPORT extern const ui::ResourceBundle::FontStyle kItemTextFontStyle; |
83 | 83 |
84 APP_LIST_EXPORT extern const char kPageOpenedHistogram[]; | 84 APP_LIST_EXPORT extern const char kPageOpenedHistogram[]; |
85 APP_LIST_EXPORT extern const char kSearchResultOpenDisplayTypeHistogram[]; | 85 APP_LIST_EXPORT extern const char kSearchResultOpenDisplayTypeHistogram[]; |
| 86 APP_LIST_EXPORT extern const char kSearchQueryLength[]; |
86 | 87 |
87 #if defined(OS_LINUX) | 88 #if defined(OS_LINUX) |
88 // The WM_CLASS name for the app launcher window on Linux. | 89 // The WM_CLASS name for the app launcher window on Linux. |
89 APP_LIST_EXPORT extern const char kAppListWMClass[]; | 90 APP_LIST_EXPORT extern const char kAppListWMClass[]; |
90 #endif | 91 #endif |
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 gfx::ShadowValue APP_LIST_EXPORT GetShadowForZHeight(int z_height); | 94 gfx::ShadowValue APP_LIST_EXPORT GetShadowForZHeight(int z_height); |
94 | 95 |
95 } // namespace app_list | 96 } // namespace app_list |
96 | 97 |
97 #endif // UI_APP_LIST_APP_LIST_CONSTANTS_H_ | 98 #endif // UI_APP_LIST_APP_LIST_CONSTANTS_H_ |
OLD | NEW |