| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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(); | 59 static SkColor PictureTileBorderColor(); |
| 60 static int PictureTileBorderWidth(const LayerTreeImpl* tree_impl); | 60 static int PictureTileBorderWidth(const LayerTreeImpl* tree_impl); |
| 61 | 61 |
| 62 static SkColor DirectPictureBorderColor(); | 62 static SkColor DirectPictureBorderColor(); |
| 63 static int DirectPictureBorderWidth(const LayerTreeImpl* tree_impl); | 63 static int DirectPictureBorderWidth(const LayerTreeImpl* tree_impl); |
| 64 | 64 |
| 65 static SkColor CompressedTileBorderColor(); |
| 66 static int CompressedTileBorderWidth(const LayerTreeImpl* tree_impl); |
| 67 |
| 65 static SkColor DefaultCheckerboardColor(); | 68 static SkColor DefaultCheckerboardColor(); |
| 66 static SkColor EvictedTileCheckerboardColor(); | 69 static SkColor EvictedTileCheckerboardColor(); |
| 67 static SkColor InvalidatedTileCheckerboardColor(); | 70 static SkColor InvalidatedTileCheckerboardColor(); |
| 68 | 71 |
| 69 static const int kFadeSteps = 50; | 72 static const int kFadeSteps = 50; |
| 70 static SkColor PaintRectBorderColor(int step); | 73 static SkColor PaintRectBorderColor(int step); |
| 71 static int PaintRectBorderWidth(); | 74 static int PaintRectBorderWidth(); |
| 72 static SkColor PaintRectFillColor(int step); | 75 static SkColor PaintRectFillColor(int step); |
| 73 | 76 |
| 74 static SkColor PropertyChangedRectBorderColor(); | 77 static SkColor PropertyChangedRectBorderColor(); |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 static SkColor MemoryDisplayTextColor(); | 132 static SkColor MemoryDisplayTextColor(); |
| 130 static SkColor PaintTimeDisplayTextAndGraphColor(); | 133 static SkColor PaintTimeDisplayTextAndGraphColor(); |
| 131 | 134 |
| 132 private: | 135 private: |
| 133 DISALLOW_IMPLICIT_CONSTRUCTORS(DebugColors); | 136 DISALLOW_IMPLICIT_CONSTRUCTORS(DebugColors); |
| 134 }; | 137 }; |
| 135 | 138 |
| 136 } // namespace cc | 139 } // namespace cc |
| 137 | 140 |
| 138 #endif // CC_DEBUG_DEBUG_COLORS_H_ | 141 #endif // CC_DEBUG_DEBUG_COLORS_H_ |
| OLD | NEW |