summaryrefslogtreecommitdiffstats
path: root/cc/debug_border_draw_quad.cc
diff options
context:
space:
mode:
Diffstat (limited to 'cc/debug_border_draw_quad.cc')
-rw-r--r--cc/debug_border_draw_quad.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/cc/debug_border_draw_quad.cc b/cc/debug_border_draw_quad.cc
index a8b9d35..5a9c778 100644
--- a/cc/debug_border_draw_quad.cc
+++ b/cc/debug_border_draw_quad.cc
@@ -10,12 +10,12 @@
namespace cc {
-scoped_ptr<CCDebugBorderDrawQuad> CCDebugBorderDrawQuad::create(const CCSharedQuadState* sharedQuadState, const IntRect& quadRect, SkColor color, int width)
+scoped_ptr<CCDebugBorderDrawQuad> CCDebugBorderDrawQuad::create(const CCSharedQuadState* sharedQuadState, const gfx::Rect& quadRect, SkColor color, int width)
{
return make_scoped_ptr(new CCDebugBorderDrawQuad(sharedQuadState, quadRect, color, width));
}
-CCDebugBorderDrawQuad::CCDebugBorderDrawQuad(const CCSharedQuadState* sharedQuadState, const IntRect& quadRect, SkColor color, int width)
+CCDebugBorderDrawQuad::CCDebugBorderDrawQuad(const CCSharedQuadState* sharedQuadState, const gfx::Rect& quadRect, SkColor color, int width)
: CCDrawQuad(sharedQuadState, CCDrawQuad::DebugBorder, quadRect)
, m_color(color)
, m_width(width)