Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(867)

Unified Diff: third_party/WebKit/Source/platform/graphics/StrokeData.cpp

Issue 2640983002: Rename paint data structures (Closed)
Patch Set: DrawingDisplayItem Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/graphics/StrokeData.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/StrokeData.cpp b/third_party/WebKit/Source/platform/graphics/StrokeData.cpp
index 735eae1a038478d63d7d3e9d11e3db87f5e688a3..4c3e859c95f3b83b2b55fd599846bb7a8c3c34ea 100644
--- a/third_party/WebKit/Source/platform/graphics/StrokeData.cpp
+++ b/third_party/WebKit/Source/platform/graphics/StrokeData.cpp
@@ -27,6 +27,7 @@
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "platform/graphics/StrokeData.h"
+#include "platform/graphics/paint/PaintFlags.h"
#include "third_party/skia/include/effects/SkDashPathEffect.h"
#include "wtf/PtrUtil.h"
#include <memory>
@@ -56,8 +57,8 @@ void StrokeData::setLineDash(const DashArray& dashes, float dashOffset) {
m_dash = SkDashPathEffect::Make(intervals.get(), count, dashOffset);
}
-void StrokeData::setupPaint(SkPaint* paint, int length) const {
- paint->setStyle(SkPaint::kStroke_Style);
+void StrokeData::setupPaint(PaintFlags* paint, int length) const {
+ paint->setStyle(PaintFlags::kStroke_Style);
paint->setStrokeWidth(SkFloatToScalar(m_thickness));
paint->setStrokeCap(m_lineCap);
paint->setStrokeJoin(m_lineJoin);
@@ -66,7 +67,7 @@ void StrokeData::setupPaint(SkPaint* paint, int length) const {
setupPaintDashPathEffect(paint, length);
}
-void StrokeData::setupPaintDashPathEffect(SkPaint* paint, int length) const {
+void StrokeData::setupPaintDashPathEffect(PaintFlags* paint, int length) const {
float width = m_thickness;
if (m_dash) {
paint->setPathEffect(m_dash);

Powered by Google App Engine
This is Rietveld 408576698