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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 | 94 |
95 static SkColor HUDBackgroundColor(); | 95 static SkColor HUDBackgroundColor(); |
96 static SkColor HUDSeparatorLineColor(); | 96 static SkColor HUDSeparatorLineColor(); |
97 static SkColor HUDIndicatorLineColor(); | 97 static SkColor HUDIndicatorLineColor(); |
98 | 98 |
99 static SkColor PlatformLayerTreeTextColor(); | 99 static SkColor PlatformLayerTreeTextColor(); |
100 static SkColor FPSDisplayTextAndGraphColor(); | 100 static SkColor FPSDisplayTextAndGraphColor(); |
101 static SkColor MemoryDisplayTextColor(); | 101 static SkColor MemoryDisplayTextColor(); |
102 static SkColor PaintTimeDisplayTextAndGraphColor(); | 102 static SkColor PaintTimeDisplayTextAndGraphColor(); |
103 | 103 |
| 104 private: |
104 DISALLOW_IMPLICIT_CONSTRUCTORS(DebugColors); | 105 DISALLOW_IMPLICIT_CONSTRUCTORS(DebugColors); |
105 }; | 106 }; |
106 | 107 |
107 } // namespace cc | 108 } // namespace cc |
108 | 109 |
109 #endif // CC_DEBUG_DEBUG_COLORS_H_ | 110 #endif // CC_DEBUG_DEBUG_COLORS_H_ |
OLD | NEW |