summaryrefslogtreecommitdiffstats
path: root/cc/quad_culler.cc
diff options
context:
space:
mode:
authornduca@chromium.org <nduca@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-12-12 19:18:37 +0000
committernduca@chromium.org <nduca@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-12-12 19:18:37 +0000
commitff762fbe1abebb014ef65596becbcd28900b44de (patch)
tree709c69cca4f1930a95a0d6d3fc52bb9dbf662bfe /cc/quad_culler.cc
parent5f542b3a751407a6168b61be7c675edeccc83b59 (diff)
downloadchromium_src-ff762fbe1abebb014ef65596becbcd28900b44de.zip
chromium_src-ff762fbe1abebb014ef65596becbcd28900b44de.tar.gz
chromium_src-ff762fbe1abebb014ef65596becbcd28900b44de.tar.bz2
[cc] Route LayerImpl::layerTreeHostImpl() calls through LayerTreeImpl
Pulled settings & debugstate to their own files to reduce header coupling, which bit me a few times on this patch [lthi needs lth, lti needs lthi for settings, etc]. NOTRY=true BUG=155209 R=enne Review URL: https://chromiumcodereview.appspot.com/11529003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@172635 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/quad_culler.cc')
-rw-r--r--cc/quad_culler.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/cc/quad_culler.cc b/cc/quad_culler.cc
index ca79ac1..606e970 100644
--- a/cc/quad_culler.cc
+++ b/cc/quad_culler.cc
@@ -50,7 +50,7 @@ static inline bool appendQuadInternal(scoped_ptr<DrawQuad> drawQuad, const gfx::
if (keepQuad) {
if (createDebugBorderQuads && !drawQuad->IsDebugQuad() && drawQuad->visible_rect != drawQuad->rect) {
SkColor color = DebugColors::CulledTileBorderColor();
- float width = DebugColors::CulledTileBorderWidth(layer ? layer->layerTreeHostImpl() : NULL);
+ float width = DebugColors::CulledTileBorderWidth(layer ? layer->layerTreeImpl() : NULL);
scoped_ptr<DebugBorderDrawQuad> debugBorderQuad = DebugBorderDrawQuad::Create();
debugBorderQuad->SetNew(drawQuad->shared_quad_state, drawQuad->visible_rect, color, width);
quadList.append(debugBorderQuad.PassAs<DrawQuad>());