Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1395)

Unified Diff: cc/debug/debug_colors.h

Issue 2748263002: Move cc::DisplayItemList and related classes into cc/paint/ (Closed)
Patch Set: Merge branch 'master' into ccpaint Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/debug/benchmark_instrumentation.h ('k') | cc/debug/debug_colors.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/debug/debug_colors.h
diff --git a/cc/debug/debug_colors.h b/cc/debug/debug_colors.h
index 154766fdafab0dd2f915d2ca8c425a7b77dd5369..cdb62dc9b742b1a0bb815697752658524a27a7db 100644
--- a/cc/debug/debug_colors.h
+++ b/cc/debug/debug_colors.h
@@ -6,61 +6,60 @@
#define CC_DEBUG_DEBUG_COLORS_H_
#include "base/macros.h"
+#include "cc/debug/debug_export.h"
#include "third_party/skia/include/core/SkColor.h"
namespace cc {
-class LayerTreeImpl;
-
-class DebugColors {
+class CC_DEBUG_EXPORT DebugColors {
public:
static SkColor TiledContentLayerBorderColor();
- static int TiledContentLayerBorderWidth(const LayerTreeImpl* tree_impl);
+ static int TiledContentLayerBorderWidth(float device_scale_factor);
static SkColor ImageLayerBorderColor();
- static int ImageLayerBorderWidth(const LayerTreeImpl* tree_impl);
+ static int ImageLayerBorderWidth(float device_scale_factor);
static SkColor ContentLayerBorderColor();
- static int ContentLayerBorderWidth(const LayerTreeImpl* tree_impl);
+ static int ContentLayerBorderWidth(float device_scale_factor);
static SkColor MaskingLayerBorderColor();
- static int MaskingLayerBorderWidth(const LayerTreeImpl* tree_impl);
+ static int MaskingLayerBorderWidth(float device_scale_factor);
static SkColor ContainerLayerBorderColor();
- static int ContainerLayerBorderWidth(const LayerTreeImpl* tree_impl);
+ static int ContainerLayerBorderWidth(float device_scale_factor);
static SkColor SurfaceLayerBorderColor();
- static int SurfaceLayerBorderWidth(const LayerTreeImpl* tree_impl);
+ static int SurfaceLayerBorderWidth(float device_scale_factor);
static SkColor SurfaceBorderColor();
- static int SurfaceBorderWidth(const LayerTreeImpl* tree_impl);
+ static int SurfaceBorderWidth(float device_scale_factor);
static SkColor HighResTileBorderColor();
- static int HighResTileBorderWidth(const LayerTreeImpl* tree_impl);
+ static int HighResTileBorderWidth(float device_scale_factor);
static SkColor LowResTileBorderColor();
- static int LowResTileBorderWidth(const LayerTreeImpl* tree_impl);
+ static int LowResTileBorderWidth(float device_scale_factor);
static SkColor ExtraHighResTileBorderColor();
- static int ExtraHighResTileBorderWidth(const LayerTreeImpl* tree_impl);
+ static int ExtraHighResTileBorderWidth(float device_scale_factor);
static SkColor ExtraLowResTileBorderColor();
- static int ExtraLowResTileBorderWidth(const LayerTreeImpl* tree_impl);
+ static int ExtraLowResTileBorderWidth(float device_scale_factor);
static SkColor MissingTileBorderColor();
- static int MissingTileBorderWidth(const LayerTreeImpl* tree_impl);
+ static int MissingTileBorderWidth(float device_scale_factor);
static SkColor SolidColorTileBorderColor();
- static int SolidColorTileBorderWidth(const LayerTreeImpl* tree_impl);
+ static int SolidColorTileBorderWidth(float device_scale_factor);
static SkColor OOMTileBorderColor();
- static int OOMTileBorderWidth(const LayerTreeImpl* tree_impl);
+ static int OOMTileBorderWidth(float device_scale_factor);
static SkColor DirectPictureBorderColor();
- static int DirectPictureBorderWidth(const LayerTreeImpl* tree_impl);
+ static int DirectPictureBorderWidth(float device_scale_factor);
static SkColor CompressedTileBorderColor();
- static int CompressedTileBorderWidth(const LayerTreeImpl* tree_impl);
+ static int CompressedTileBorderWidth(float device_scale_factor);
static SkColor DefaultCheckerboardColor();
static SkColor EvictedTileCheckerboardColor();
« no previous file with comments | « cc/debug/benchmark_instrumentation.h ('k') | cc/debug/debug_colors.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698