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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 APP_LIST_EXPORT extern const int kTileIconSize; | 62 APP_LIST_EXPORT extern const int kTileIconSize; |
63 | 63 |
64 APP_LIST_EXPORT extern const int kCenteredPreferredCols; | 64 APP_LIST_EXPORT extern const int kCenteredPreferredCols; |
65 APP_LIST_EXPORT extern const int kCenteredPreferredRows; | 65 APP_LIST_EXPORT extern const int kCenteredPreferredRows; |
66 | 66 |
67 APP_LIST_EXPORT extern const int kExperimentalPreferredCols; | 67 APP_LIST_EXPORT extern const int kExperimentalPreferredCols; |
68 APP_LIST_EXPORT extern const int kExperimentalPreferredRows; | 68 APP_LIST_EXPORT extern const int kExperimentalPreferredRows; |
69 | 69 |
70 APP_LIST_EXPORT extern const int kReorderDroppingCircleRadius; | 70 APP_LIST_EXPORT extern const int kReorderDroppingCircleRadius; |
71 | 71 |
72 APP_LIST_EXPORT extern const int kExperimentalWindowPadding; | 72 APP_LIST_EXPORT extern const int kExperimentalAppsGridPadding; |
| 73 APP_LIST_EXPORT extern const int kExperimentalSearchBoxPadding; |
73 | 74 |
74 APP_LIST_EXPORT extern size_t kMaxFolderItems; | 75 APP_LIST_EXPORT extern size_t kMaxFolderItems; |
75 APP_LIST_EXPORT extern const size_t kNumFolderTopItems; | 76 APP_LIST_EXPORT extern const size_t kNumFolderTopItems; |
76 APP_LIST_EXPORT extern const size_t kMaxFolderNameChars; | 77 APP_LIST_EXPORT extern const size_t kMaxFolderNameChars; |
77 | 78 |
78 APP_LIST_EXPORT extern const ui::ResourceBundle::FontStyle kItemTextFontStyle; | 79 APP_LIST_EXPORT extern const ui::ResourceBundle::FontStyle kItemTextFontStyle; |
79 | 80 |
80 #if defined(OS_LINUX) | 81 #if defined(OS_LINUX) |
81 // The WM_CLASS name for the app launcher window on Linux. | 82 // The WM_CLASS name for the app launcher window on Linux. |
82 APP_LIST_EXPORT extern const char kAppListWMClass[]; | 83 APP_LIST_EXPORT extern const char kAppListWMClass[]; |
83 #endif | 84 #endif |
84 | 85 |
85 // Returns the shadow values for a view at |z_height|. | 86 // Returns the shadow values for a view at |z_height|. |
86 gfx::ShadowValue APP_LIST_EXPORT GetShadowForZHeight(int z_height); | 87 gfx::ShadowValue APP_LIST_EXPORT GetShadowForZHeight(int z_height); |
87 | 88 |
88 } // namespace app_list | 89 } // namespace app_list |
89 | 90 |
90 #endif // UI_APP_LIST_APP_LIST_CONSTANTS_H_ | 91 #endif // UI_APP_LIST_APP_LIST_CONSTANTS_H_ |
OLD | NEW |