| Index: cc/CCDebugBorderDrawQuad.cpp
|
| diff --git a/cc/CCDebugBorderDrawQuad.cpp b/cc/CCDebugBorderDrawQuad.cpp
|
| index 95c106d3e39c3925678e8f9e5509ad85c1ad26a0..09459297c20060bfcff585eb7a0f1a58a94808dc 100644
|
| --- a/cc/CCDebugBorderDrawQuad.cpp
|
| +++ b/cc/CCDebugBorderDrawQuad.cpp
|
| @@ -8,12 +8,12 @@
|
|
|
| namespace cc {
|
|
|
| -PassOwnPtr<CCDebugBorderDrawQuad> CCDebugBorderDrawQuad::create(const CCSharedQuadState* sharedQuadState, const IntRect& quadRect, SkColor color, int width)
|
| +PassOwnPtr<CCDebugBorderDrawQuad> CCDebugBorderDrawQuad::create(const CCSharedQuadState* sharedQuadState, const ccmath::IntRect& quadRect, SkColor color, int width)
|
| {
|
| return adoptPtr(new CCDebugBorderDrawQuad(sharedQuadState, quadRect, color, width));
|
| }
|
|
|
| -CCDebugBorderDrawQuad::CCDebugBorderDrawQuad(const CCSharedQuadState* sharedQuadState, const IntRect& quadRect, SkColor color, int width)
|
| +CCDebugBorderDrawQuad::CCDebugBorderDrawQuad(const CCSharedQuadState* sharedQuadState, const ccmath::IntRect& quadRect, SkColor color, int width)
|
| : CCDrawQuad(sharedQuadState, CCDrawQuad::DebugBorder, quadRect)
|
| , m_color(color)
|
| , m_width(width)
|
|
|