Correct blacklist entry message
[chromium-blink-merge.git] / ui / app_list / app_list_constants.h
blob217ebc746e864fc0c7af47bd6fe1d6b010dfeee1
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
3 // found in the LICENSE file.
5 #ifndef UI_APP_LIST_APP_LIST_CONSTANTS_H_
6 #define UI_APP_LIST_APP_LIST_CONSTANTS_H_
8 #include "third_party/skia/include/core/SkColor.h"
9 #include "ui/app_list/app_list_export.h"
10 #include "ui/base/resource/resource_bundle.h"
12 namespace app_list {
14 APP_LIST_EXPORT extern const SkColor kContentsBackgroundColor;
15 APP_LIST_EXPORT extern const SkColor kSearchBoxBackground;
16 APP_LIST_EXPORT extern const SkColor kTopSeparatorColor;
18 APP_LIST_EXPORT extern const SkColor kHighlightedColor;
19 APP_LIST_EXPORT extern const SkColor kSelectedColor;
21 APP_LIST_EXPORT extern const SkColor kPagerHoverColor;
22 APP_LIST_EXPORT extern const SkColor kPagerNormalColor;
23 APP_LIST_EXPORT extern const SkColor kPagerSelectedColor;
25 APP_LIST_EXPORT extern const SkColor kResultBorderColor;
26 APP_LIST_EXPORT extern const SkColor kResultDefaultTextColor;
27 APP_LIST_EXPORT extern const SkColor kResultDimmedTextColor;
28 APP_LIST_EXPORT extern const SkColor kResultURLTextColor;
30 APP_LIST_EXPORT extern const SkColor kGridTitleColor;
31 APP_LIST_EXPORT extern const SkColor kGridTitleHoverColor;
33 APP_LIST_EXPORT extern const int kPageTransitionDurationInMs;
34 APP_LIST_EXPORT extern const int kOverscrollPageTransitionDurationMs;
36 APP_LIST_EXPORT extern const int kPreferredCols;
37 APP_LIST_EXPORT extern const int kPreferredRows;
38 APP_LIST_EXPORT extern const int kPreferredIconDimension;
40 APP_LIST_EXPORT extern const ui::ResourceBundle::FontStyle kItemTextFontStyle;
42 } // namespace app_list
44 #endif // UI_APP_LIST_APP_LIST_CONSTANTS_H_