| 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 #include "ash/system/tray/tray_constants.h" | 5 #include "ash/system/tray/tray_constants.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "third_party/skia/include/core/SkColor.h" | 8 #include "third_party/skia/include/core/SkColor.h" |
| 9 #include "ui/gfx/color_palette.h" | 9 #include "ui/gfx/color_palette.h" |
| 10 | 10 |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 const int kTrayPopupItemMinHeight = 48; | 50 const int kTrayPopupItemMinHeight = 48; |
| 51 const int kTrayPopupItemMinStartWidth = 48; | 51 const int kTrayPopupItemMinStartWidth = 48; |
| 52 const int kTrayPopupItemMinEndWidth = | 52 const int kTrayPopupItemMinEndWidth = |
| 53 kMenuIconSize + 2 * kTrayPopupButtonEndMargin; | 53 kMenuIconSize + 2 * kTrayPopupButtonEndMargin; |
| 54 | 54 |
| 55 const int kTrayDetailedViewTransitionDelayMs = 100; | 55 const int kTrayDetailedViewTransitionDelayMs = 100; |
| 56 | 56 |
| 57 const int kTrayPopupLabelRightPadding = 8; | 57 const int kTrayPopupLabelRightPadding = 8; |
| 58 | 58 |
| 59 const int kTrayPopupDetailsIconWidth = 25; | 59 const int kTrayPopupDetailsIconWidth = 25; |
| 60 const int kTrayPopupDetailsLabelExtraLeftMargin = 8; | |
| 61 const SkColor kTrayPopupHoverBackgroundColor = SkColorSetRGB(0xe4, 0xe4, 0xe4); | 60 const SkColor kTrayPopupHoverBackgroundColor = SkColorSetRGB(0xe4, 0xe4, 0xe4); |
| 62 const int kTrayRoundedBorderRadius = 2; | 61 const int kTrayRoundedBorderRadius = 2; |
| 63 | 62 |
| 64 const int kTrayToggleButtonWidth = 68; | 63 const int kTrayToggleButtonWidth = 68; |
| 65 | 64 |
| 66 const SkColor kBackgroundColor = SK_ColorWHITE; | 65 const SkColor kBackgroundColor = SK_ColorWHITE; |
| 67 const SkColor kPublicAccountUserCardTextColor = SkColorSetRGB(0x66, 0x66, 0x66); | 66 const SkColor kPublicAccountUserCardTextColor = SkColorSetRGB(0x66, 0x66, 0x66); |
| 68 const SkColor kPublicAccountUserCardNameColor = SK_ColorBLACK; | 67 const SkColor kPublicAccountUserCardNameColor = SK_ColorBLACK; |
| 69 | 68 |
| 70 const SkColor kHeaderBackgroundColor = SkColorSetRGB(0xf5, 0xf5, 0xf5); | 69 const SkColor kHeaderBackgroundColor = SkColorSetRGB(0xf5, 0xf5, 0xf5); |
| (...skipping 28 matching lines...) Expand all Loading... |
| 99 | 98 |
| 100 const SkColor kTrayPopupInkDropBaseColor = SK_ColorBLACK; | 99 const SkColor kTrayPopupInkDropBaseColor = SK_ColorBLACK; |
| 101 const float kTrayPopupInkDropRippleOpacity = 0.06f; | 100 const float kTrayPopupInkDropRippleOpacity = 0.06f; |
| 102 const float kTrayPopupInkDropHighlightOpacity = 0.08f; | 101 const float kTrayPopupInkDropHighlightOpacity = 0.08f; |
| 103 const int kTrayPopupInkDropInset = 4; | 102 const int kTrayPopupInkDropInset = 4; |
| 104 const int kTrayPopupInkDropCornerRadius = 2; | 103 const int kTrayPopupInkDropCornerRadius = 2; |
| 105 | 104 |
| 106 const int kTrayPopupSystemInfoRowHeight = 40; | 105 const int kTrayPopupSystemInfoRowHeight = 40; |
| 107 | 106 |
| 108 } // namespace ash | 107 } // namespace ash |
| OLD | NEW |