| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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(); | 56 static SkColor SolidColorTileBorderColor(); |
| 57 static int SolidColorTileBorderWidth(const LayerTreeImpl* tree_impl); | 57 static int SolidColorTileBorderWidth(const LayerTreeImpl* tree_impl); |
| 58 | 58 |
| 59 static SkColor PictureTileBorderColor(); |
| 60 static int PictureTileBorderWidth(const LayerTreeImpl* tree_impl); |
| 61 |
| 59 static SkColor DefaultCheckerboardColor(); | 62 static SkColor DefaultCheckerboardColor(); |
| 60 static SkColor EvictedTileCheckerboardColor(); | 63 static SkColor EvictedTileCheckerboardColor(); |
| 61 static SkColor InvalidatedTileCheckerboardColor(); | 64 static SkColor InvalidatedTileCheckerboardColor(); |
| 62 | 65 |
| 63 static SkColor PaintRectBorderColor(); | 66 static SkColor PaintRectBorderColor(); |
| 64 static int PaintRectBorderWidth(const LayerTreeImpl* tree_impl); | 67 static int PaintRectBorderWidth(const LayerTreeImpl* tree_impl); |
| 65 static SkColor PaintRectFillColor(); | 68 static SkColor PaintRectFillColor(); |
| 66 | 69 |
| 67 static SkColor PropertyChangedRectBorderColor(); | 70 static SkColor PropertyChangedRectBorderColor(); |
| 68 static int PropertyChangedRectBorderWidth(const LayerTreeImpl* tree_impl); | 71 static int PropertyChangedRectBorderWidth(const LayerTreeImpl* tree_impl); |
| (...skipping 30 matching lines...) Expand all Loading... |
| 99 static SkColor FPSDisplayTextAndGraphColor(); | 102 static SkColor FPSDisplayTextAndGraphColor(); |
| 100 static SkColor MemoryDisplayTextColor(); | 103 static SkColor MemoryDisplayTextColor(); |
| 101 static SkColor PaintTimeDisplayTextAndGraphColor(); | 104 static SkColor PaintTimeDisplayTextAndGraphColor(); |
| 102 | 105 |
| 103 DISALLOW_IMPLICIT_CONSTRUCTORS(DebugColors); | 106 DISALLOW_IMPLICIT_CONSTRUCTORS(DebugColors); |
| 104 }; | 107 }; |
| 105 | 108 |
| 106 } // namespace cc | 109 } // namespace cc |
| 107 | 110 |
| 108 #endif // CC_DEBUG_DEBUG_COLORS_H_ | 111 #endif // CC_DEBUG_DEBUG_COLORS_H_ |
| OLD | NEW |