| 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/common/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 |
| 11 namespace ash { | 11 namespace ash { |
| 12 | 12 |
| 13 const int kPaddingFromRightEdgeOfScreenBottomAlignment = 7; | 13 const int kPaddingFromRightEdgeOfScreenBottomAlignment = 7; |
| 14 const int kPaddingFromBottomOfScreenBottomAlignment = 7; | 14 const int kPaddingFromBottomOfScreenBottomAlignment = 7; |
| 15 const int kPaddingFromOuterEdgeOfLauncherVerticalAlignment = 8; | 15 const int kPaddingFromOuterEdgeOfLauncherVerticalAlignment = 8; |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 | 106 |
| 107 const SkColor kTrayPopupInkDropBaseColor = SK_ColorBLACK; | 107 const SkColor kTrayPopupInkDropBaseColor = SK_ColorBLACK; |
| 108 const float kTrayPopupInkDropRippleOpacity = 0.06f; | 108 const float kTrayPopupInkDropRippleOpacity = 0.06f; |
| 109 const float kTrayPopupInkDropHighlightOpacity = 0.08f; | 109 const float kTrayPopupInkDropHighlightOpacity = 0.08f; |
| 110 const int kTrayPopupInkDropInset = 4; | 110 const int kTrayPopupInkDropInset = 4; |
| 111 const int kTrayPopupInkDropCornerRadius = 2; | 111 const int kTrayPopupInkDropCornerRadius = 2; |
| 112 | 112 |
| 113 const int kTrayPopupSystemInfoRowHeight = 40; | 113 const int kTrayPopupSystemInfoRowHeight = 40; |
| 114 | 114 |
| 115 } // namespace ash | 115 } // namespace ash |
| OLD | NEW |