Index: cc/tiled_layer_impl.cc |
diff --git a/cc/tiled_layer_impl.cc b/cc/tiled_layer_impl.cc |
index ede77cb25d95a7dd46f81e03972f7e718905dfca..67144052561e01d462aa43f71540f4090284ba5e 100644 |
--- a/cc/tiled_layer_impl.cc |
+++ b/cc/tiled_layer_impl.cc |
@@ -112,7 +112,7 @@ DrawableTile* TiledLayerImpl::createTile(int i, int j) |
void TiledLayerImpl::getDebugBorderProperties(SkColor* color, float* width) const |
{ |
*color = DebugColors::TiledContentLayerBorderColor(); |
- *width = DebugColors::TiledContentLayerBorderWidth(layerTreeHostImpl()); |
+ *width = DebugColors::TiledContentLayerBorderWidth(layerTreeImpl()); |
} |
void TiledLayerImpl::appendQuads(QuadSink& quadSink, AppendQuadsData& appendQuadsData) |
@@ -138,10 +138,10 @@ void TiledLayerImpl::appendQuads(QuadSink& quadSink, AppendQuadsData& appendQuad |
if (m_skipsDraw || !tile || !tile->resourceId()) { |
borderColor = DebugColors::MissingTileBorderColor(); |
- borderWidth = DebugColors::MissingTileBorderWidth(layerTreeHostImpl()); |
+ borderWidth = DebugColors::MissingTileBorderWidth(layerTreeImpl()); |
} else { |
borderColor = DebugColors::TileBorderColor(); |
- borderWidth = DebugColors::TileBorderWidth(layerTreeHostImpl()); |
+ borderWidth = DebugColors::TileBorderWidth(layerTreeImpl()); |
} |
scoped_ptr<DebugBorderDrawQuad> debugBorderQuad = DebugBorderDrawQuad::Create(); |
debugBorderQuad->SetNew(sharedQuadState, tileRect, borderColor, borderWidth); |