| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 CC_DEBUG_DEBUG_COLORS_H_ | 5 #ifndef CC_DEBUG_DEBUG_COLORS_H_ |
| 6 #define CC_DEBUG_DEBUG_COLORS_H_ | 6 #define CC_DEBUG_DEBUG_COLORS_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "third_party/skia/include/core/SkColor.h" | 9 #include "third_party/skia/include/core/SkColor.h" |
| 10 | 10 |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 static SkColor TouchEventHandlerRectFillColor(); | 99 static SkColor TouchEventHandlerRectFillColor(); |
| 100 | 100 |
| 101 static SkColor WheelEventHandlerRectBorderColor(); | 101 static SkColor WheelEventHandlerRectBorderColor(); |
| 102 static int WheelEventHandlerRectBorderWidth(); | 102 static int WheelEventHandlerRectBorderWidth(); |
| 103 static SkColor WheelEventHandlerRectFillColor(); | 103 static SkColor WheelEventHandlerRectFillColor(); |
| 104 | 104 |
| 105 static SkColor NonFastScrollableRectBorderColor(); | 105 static SkColor NonFastScrollableRectBorderColor(); |
| 106 static int NonFastScrollableRectBorderWidth(); | 106 static int NonFastScrollableRectBorderWidth(); |
| 107 static SkColor NonFastScrollableRectFillColor(); | 107 static SkColor NonFastScrollableRectFillColor(); |
| 108 | 108 |
| 109 static SkColor LayerAnimationBoundsBorderColor(); |
| 110 static int LayerAnimationBoundsBorderWidth(); |
| 111 static SkColor LayerAnimationBoundsFillColor(); |
| 112 |
| 109 static SkColor NonPaintedFillColor(); | 113 static SkColor NonPaintedFillColor(); |
| 110 static SkColor MissingPictureFillColor(); | 114 static SkColor MissingPictureFillColor(); |
| 111 static SkColor PictureBorderColor(); | 115 static SkColor PictureBorderColor(); |
| 112 | 116 |
| 113 static SkColor HUDBackgroundColor(); | 117 static SkColor HUDBackgroundColor(); |
| 114 static SkColor HUDSeparatorLineColor(); | 118 static SkColor HUDSeparatorLineColor(); |
| 115 static SkColor HUDIndicatorLineColor(); | 119 static SkColor HUDIndicatorLineColor(); |
| 116 | 120 |
| 117 static SkColor PlatformLayerTreeTextColor(); | 121 static SkColor PlatformLayerTreeTextColor(); |
| 118 static SkColor FPSDisplayTextAndGraphColor(); | 122 static SkColor FPSDisplayTextAndGraphColor(); |
| 119 static SkColor MemoryDisplayTextColor(); | 123 static SkColor MemoryDisplayTextColor(); |
| 120 static SkColor PaintTimeDisplayTextAndGraphColor(); | 124 static SkColor PaintTimeDisplayTextAndGraphColor(); |
| 121 | 125 |
| 122 private: | 126 private: |
| 123 DISALLOW_IMPLICIT_CONSTRUCTORS(DebugColors); | 127 DISALLOW_IMPLICIT_CONSTRUCTORS(DebugColors); |
| 124 }; | 128 }; |
| 125 | 129 |
| 126 } // namespace cc | 130 } // namespace cc |
| 127 | 131 |
| 128 #endif // CC_DEBUG_DEBUG_COLORS_H_ | 132 #endif // CC_DEBUG_DEBUG_COLORS_H_ |
| OLD | NEW |