| 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" |
| 11 #include "third_party/skia/include/core/SkColor.h" | 11 #include "third_party/skia/include/core/SkColor.h" |
| 12 #include "ui/app_list/app_list_export.h" | 12 #include "ui/app_list/app_list_export.h" |
| 13 #include "ui/base/resource/resource_bundle.h" | 13 #include "ui/base/resource/resource_bundle.h" |
| 14 #include "ui/gfx/animation/tween.h" | 14 #include "ui/gfx/animation/tween.h" |
| 15 #include "ui/gfx/shadow_value.h" | 15 #include "ui/gfx/shadow_value.h" |
| 16 | 16 |
| 17 namespace app_list { | 17 namespace app_list { |
| 18 | 18 |
| 19 namespace fullscreen_constants { |
| 20 APP_LIST_EXPORT extern const size_t kNumStartPageTiles; |
| 21 } // namespace fullscreen_constants |
| 22 |
| 19 APP_LIST_EXPORT extern const SkColor kContentsBackgroundColor; | 23 APP_LIST_EXPORT extern const SkColor kContentsBackgroundColor; |
| 20 APP_LIST_EXPORT extern const SkColor kSearchBoxBackground; | 24 APP_LIST_EXPORT extern const SkColor kSearchBoxBackground; |
| 21 | 25 |
| 22 APP_LIST_EXPORT extern const SkColor kSearchTextColor; | 26 APP_LIST_EXPORT extern const SkColor kSearchTextColor; |
| 23 | 27 |
| 24 APP_LIST_EXPORT extern const SkColor kLabelBackgroundColor; | 28 APP_LIST_EXPORT extern const SkColor kLabelBackgroundColor; |
| 25 APP_LIST_EXPORT extern const SkColor kTopSeparatorColor; | 29 APP_LIST_EXPORT extern const SkColor kTopSeparatorColor; |
| 26 APP_LIST_EXPORT extern const SkColor kBottomSeparatorColor; | 30 APP_LIST_EXPORT extern const SkColor kBottomSeparatorColor; |
| 27 | 31 |
| 28 APP_LIST_EXPORT extern const SkColor kDialogSeparatorColor; | 32 APP_LIST_EXPORT extern const SkColor kDialogSeparatorColor; |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 | 95 |
| 92 // Returns the shadow values for a view at |z_height|. | 96 // Returns the shadow values for a view at |z_height|. |
| 93 APP_LIST_EXPORT gfx::ShadowValue GetShadowForZHeight(int z_height); | 97 APP_LIST_EXPORT gfx::ShadowValue GetShadowForZHeight(int z_height); |
| 94 | 98 |
| 95 APP_LIST_EXPORT const gfx::ShadowValues& IconStartShadows(); | 99 APP_LIST_EXPORT const gfx::ShadowValues& IconStartShadows(); |
| 96 APP_LIST_EXPORT const gfx::ShadowValues& IconEndShadows(); | 100 APP_LIST_EXPORT const gfx::ShadowValues& IconEndShadows(); |
| 97 | 101 |
| 98 } // namespace app_list | 102 } // namespace app_list |
| 99 | 103 |
| 100 #endif // UI_APP_LIST_APP_LIST_CONSTANTS_H_ | 104 #endif // UI_APP_LIST_APP_LIST_CONSTANTS_H_ |
| OLD | NEW |