| 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 static SkColor SurfaceDamageRectFillColor(); | 80 static SkColor SurfaceDamageRectFillColor(); |
| 81 | 81 |
| 82 static SkColor ScreenSpaceLayerRectBorderColor(); | 82 static SkColor ScreenSpaceLayerRectBorderColor(); |
| 83 static int ScreenSpaceLayerRectBorderWidth(); | 83 static int ScreenSpaceLayerRectBorderWidth(); |
| 84 static SkColor ScreenSpaceLayerRectFillColor(); | 84 static SkColor ScreenSpaceLayerRectFillColor(); |
| 85 | 85 |
| 86 static SkColor ScreenSpaceSurfaceReplicaRectBorderColor(); | 86 static SkColor ScreenSpaceSurfaceReplicaRectBorderColor(); |
| 87 static int ScreenSpaceSurfaceReplicaRectBorderWidth(); | 87 static int ScreenSpaceSurfaceReplicaRectBorderWidth(); |
| 88 static SkColor ScreenSpaceSurfaceReplicaRectFillColor(); | 88 static SkColor ScreenSpaceSurfaceReplicaRectFillColor(); |
| 89 | 89 |
| 90 static SkColor OccludingRectBorderColor(); | |
| 91 static int OccludingRectBorderWidth(); | |
| 92 static SkColor OccludingRectFillColor(); | |
| 93 | |
| 94 static SkColor NonOccludingRectBorderColor(); | |
| 95 static int NonOccludingRectBorderWidth(); | |
| 96 static SkColor NonOccludingRectFillColor(); | |
| 97 | |
| 98 static SkColor TouchEventHandlerRectBorderColor(); | 90 static SkColor TouchEventHandlerRectBorderColor(); |
| 99 static int TouchEventHandlerRectBorderWidth(); | 91 static int TouchEventHandlerRectBorderWidth(); |
| 100 static SkColor TouchEventHandlerRectFillColor(); | 92 static SkColor TouchEventHandlerRectFillColor(); |
| 101 | 93 |
| 102 static SkColor WheelEventHandlerRectBorderColor(); | 94 static SkColor WheelEventHandlerRectBorderColor(); |
| 103 static int WheelEventHandlerRectBorderWidth(); | 95 static int WheelEventHandlerRectBorderWidth(); |
| 104 static SkColor WheelEventHandlerRectFillColor(); | 96 static SkColor WheelEventHandlerRectFillColor(); |
| 105 | 97 |
| 106 static SkColor ScrollEventHandlerRectBorderColor(); | 98 static SkColor ScrollEventHandlerRectBorderColor(); |
| 107 static int ScrollEventHandlerRectBorderWidth(); | 99 static int ScrollEventHandlerRectBorderWidth(); |
| (...skipping 21 matching lines...) Expand all Loading... |
| 129 static SkColor MemoryDisplayTextColor(); | 121 static SkColor MemoryDisplayTextColor(); |
| 130 static SkColor PaintTimeDisplayTextAndGraphColor(); | 122 static SkColor PaintTimeDisplayTextAndGraphColor(); |
| 131 | 123 |
| 132 private: | 124 private: |
| 133 DISALLOW_IMPLICIT_CONSTRUCTORS(DebugColors); | 125 DISALLOW_IMPLICIT_CONSTRUCTORS(DebugColors); |
| 134 }; | 126 }; |
| 135 | 127 |
| 136 } // namespace cc | 128 } // namespace cc |
| 137 | 129 |
| 138 #endif // CC_DEBUG_DEBUG_COLORS_H_ | 130 #endif // CC_DEBUG_DEBUG_COLORS_H_ |
| OLD | NEW |