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_COLORS_H_ | 5 #ifndef CC_DEBUG_COLORS_H_ |
6 #define CC_DEBUG_COLORS_H_ | 6 #define CC_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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 | 46 |
47 static SkColor ExtraLowResTileBorderColor(); | 47 static SkColor ExtraLowResTileBorderColor(); |
48 static int ExtraLowResTileBorderWidth(const LayerTreeImpl* tree_impl); | 48 static int ExtraLowResTileBorderWidth(const LayerTreeImpl* tree_impl); |
49 | 49 |
50 static SkColor MissingTileBorderColor(); | 50 static SkColor MissingTileBorderColor(); |
51 static int MissingTileBorderWidth(const LayerTreeImpl* tree_impl); | 51 static int MissingTileBorderWidth(const LayerTreeImpl* tree_impl); |
52 | 52 |
53 static SkColor CulledTileBorderColor(); | 53 static SkColor CulledTileBorderColor(); |
54 static int CulledTileBorderWidth(const LayerTreeImpl* tree_impl); | 54 static int CulledTileBorderWidth(const LayerTreeImpl* tree_impl); |
55 | 55 |
| 56 static SkColor SolidColorTileBorderColor(); |
| 57 static int SolidColorTileBorderWidth(const LayerTreeImpl* tree_impl); |
| 58 |
56 static SkColor DefaultCheckerboardColor(); | 59 static SkColor DefaultCheckerboardColor(); |
57 static SkColor EvictedTileCheckerboardColor(); | 60 static SkColor EvictedTileCheckerboardColor(); |
58 static SkColor InvalidatedTileCheckerboardColor(); | 61 static SkColor InvalidatedTileCheckerboardColor(); |
59 | 62 |
60 static SkColor PaintRectBorderColor(); | 63 static SkColor PaintRectBorderColor(); |
61 static int PaintRectBorderWidth(const LayerTreeImpl* tree_impl); | 64 static int PaintRectBorderWidth(const LayerTreeImpl* tree_impl); |
62 static SkColor PaintRectFillColor(); | 65 static SkColor PaintRectFillColor(); |
63 | 66 |
64 static SkColor PropertyChangedRectBorderColor(); | 67 static SkColor PropertyChangedRectBorderColor(); |
65 static int PropertyChangedRectBorderWidth(const LayerTreeImpl* tree_impl); | 68 static int PropertyChangedRectBorderWidth(const LayerTreeImpl* tree_impl); |
(...skipping 30 matching lines...) Expand all Loading... |
96 static SkColor FPSDisplayTextAndGraphColor(); | 99 static SkColor FPSDisplayTextAndGraphColor(); |
97 static SkColor MemoryDisplayTextColor(); | 100 static SkColor MemoryDisplayTextColor(); |
98 static SkColor PaintTimeDisplayTextAndGraphColor(); | 101 static SkColor PaintTimeDisplayTextAndGraphColor(); |
99 | 102 |
100 DISALLOW_IMPLICIT_CONSTRUCTORS(DebugColors); | 103 DISALLOW_IMPLICIT_CONSTRUCTORS(DebugColors); |
101 }; | 104 }; |
102 | 105 |
103 } // namespace cc | 106 } // namespace cc |
104 | 107 |
105 #endif // CC_DEBUG_COLORS_H_ | 108 #endif // CC_DEBUG_COLORS_H_ |
OLD | NEW |