diff options
Diffstat (limited to 'third_party/WebKit/Source/platform/graphics/StrokeData.cpp')
-rw-r--r-- | third_party/WebKit/Source/platform/graphics/StrokeData.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/WebKit/Source/platform/graphics/StrokeData.cpp b/third_party/WebKit/Source/platform/graphics/StrokeData.cpp index aa7b44d5..a344a75 100644 --- a/third_party/WebKit/Source/platform/graphics/StrokeData.cpp +++ b/third_party/WebKit/Source/platform/graphics/StrokeData.cpp @@ -104,7 +104,7 @@ void StrokeData::setupPaintDashPathEffect(SkPaint* paint, int length) const } SkScalar dashLengthSk = SkIntToScalar(dashLength); SkScalar intervals[2] = { dashLengthSk, dashLengthSk }; - RefPtr<SkDashPathEffect> pathEffect = adoptRef(SkDashPathEffect::Create(intervals, 2, SkIntToScalar(phase))); + RefPtr<SkPathEffect> pathEffect = adoptRef(SkDashPathEffect::Create(intervals, 2, SkIntToScalar(phase))); paint->setPathEffect(pathEffect.get()); } } |