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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 | 70 |
71 static SkColor SurfaceDamageRectBorderColor(); | 71 static SkColor SurfaceDamageRectBorderColor(); |
72 static int SurfaceDamageRectBorderWidth(const LayerTreeImpl* tree_impl); | 72 static int SurfaceDamageRectBorderWidth(const LayerTreeImpl* tree_impl); |
73 static SkColor SurfaceDamageRectFillColor(); | 73 static SkColor SurfaceDamageRectFillColor(); |
74 | 74 |
75 static SkColor ScreenSpaceLayerRectBorderColor(); | 75 static SkColor ScreenSpaceLayerRectBorderColor(); |
76 static int ScreenSpaceLayerRectBorderWidth(const LayerTreeImpl* tree_impl); | 76 static int ScreenSpaceLayerRectBorderWidth(const LayerTreeImpl* tree_impl); |
77 static SkColor ScreenSpaceLayerRectFillColor(); | 77 static SkColor ScreenSpaceLayerRectFillColor(); |
78 | 78 |
79 static SkColor ScreenSpaceSurfaceReplicaRectBorderColor(); | 79 static SkColor ScreenSpaceSurfaceReplicaRectBorderColor(); |
80 static int ScreenSpaceSurfaceReplicaRectBorderWidth(const LayerTreeImpl* tree_
impl); | 80 static int ScreenSpaceSurfaceReplicaRectBorderWidth( |
| 81 const LayerTreeImpl* tree_impl); |
81 static SkColor ScreenSpaceSurfaceReplicaRectFillColor(); | 82 static SkColor ScreenSpaceSurfaceReplicaRectFillColor(); |
82 | 83 |
83 static SkColor OccludingRectBorderColor(); | 84 static SkColor OccludingRectBorderColor(); |
84 static int OccludingRectBorderWidth(const LayerTreeImpl* tree_impl); | 85 static int OccludingRectBorderWidth(const LayerTreeImpl* tree_impl); |
85 static SkColor OccludingRectFillColor(); | 86 static SkColor OccludingRectFillColor(); |
86 | 87 |
87 static SkColor NonOccludingRectBorderColor(); | 88 static SkColor NonOccludingRectBorderColor(); |
88 static int NonOccludingRectBorderWidth(const LayerTreeImpl* tree_impl); | 89 static int NonOccludingRectBorderWidth(const LayerTreeImpl* tree_impl); |
89 static SkColor NonOccludingRectFillColor(); | 90 static SkColor NonOccludingRectFillColor(); |
90 | 91 |
91 static SkColor NonPaintedFillColor(); | 92 static SkColor NonPaintedFillColor(); |
92 static SkColor MissingPictureFillColor(); | 93 static SkColor MissingPictureFillColor(); |
93 | 94 |
94 static SkColor HUDBackgroundColor(); | 95 static SkColor HUDBackgroundColor(); |
95 static SkColor HUDSeparatorLineColor(); | 96 static SkColor HUDSeparatorLineColor(); |
96 static SkColor HUDIndicatorLineColor(); | 97 static SkColor HUDIndicatorLineColor(); |
97 | 98 |
98 static SkColor PlatformLayerTreeTextColor(); | 99 static SkColor PlatformLayerTreeTextColor(); |
99 static SkColor FPSDisplayTextAndGraphColor(); | 100 static SkColor FPSDisplayTextAndGraphColor(); |
100 static SkColor MemoryDisplayTextColor(); | 101 static SkColor MemoryDisplayTextColor(); |
101 static SkColor PaintTimeDisplayTextAndGraphColor(); | 102 static SkColor PaintTimeDisplayTextAndGraphColor(); |
102 | 103 |
103 DISALLOW_IMPLICIT_CONSTRUCTORS(DebugColors); | 104 DISALLOW_IMPLICIT_CONSTRUCTORS(DebugColors); |
104 }; | 105 }; |
105 | 106 |
106 } // namespace cc | 107 } // namespace cc |
107 | 108 |
108 #endif // CC_DEBUG_DEBUG_COLORS_H_ | 109 #endif // CC_DEBUG_DEBUG_COLORS_H_ |
OLD | NEW |