| 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 25 matching lines...) Expand all Loading... |
| 91 static SkColor PlatformLayerTreeTextColor(); | 94 static SkColor PlatformLayerTreeTextColor(); |
| 92 static SkColor FPSDisplayTextAndGraphColor(); | 95 static SkColor FPSDisplayTextAndGraphColor(); |
| 93 static SkColor PaintTimeDisplayTextAndGraphColor(); | 96 static SkColor PaintTimeDisplayTextAndGraphColor(); |
| 94 | 97 |
| 95 DISALLOW_IMPLICIT_CONSTRUCTORS(DebugColors); | 98 DISALLOW_IMPLICIT_CONSTRUCTORS(DebugColors); |
| 96 }; | 99 }; |
| 97 | 100 |
| 98 } // namespace cc | 101 } // namespace cc |
| 99 | 102 |
| 100 #endif // CC_DEBUG_COLORS_H_ | 103 #endif // CC_DEBUG_COLORS_H_ |
| OLD | NEW |