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

Unified Diff: third_party/WebKit/Source/platform/graphics/GraphicsContextState.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/GraphicsContextState.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/GraphicsContextState.cpp b/third_party/WebKit/Source/platform/graphics/GraphicsContextState.cpp
index fd075af191a292608c53ba4006716311355b0138..49bc963c448ba1d676f87dad691a37fe70104d14 100644
--- a/third_party/WebKit/Source/platform/graphics/GraphicsContextState.cpp
+++ b/third_party/WebKit/Source/platform/graphics/GraphicsContextState.cpp
@@ -23,10 +23,10 @@ GraphicsContextState::GraphicsContextState()
m_interpolationQuality(InterpolationDefault),
m_saveCount(0),
m_shouldAntialias(true) {
- m_strokePaint.setStyle(SkPaint::kStroke_Style);
+ m_strokePaint.setStyle(PaintFlags::kStroke_Style);
m_strokePaint.setStrokeWidth(SkFloatToScalar(m_strokeData.thickness()));
- m_strokePaint.setStrokeCap(SkPaint::kDefault_Cap);
- m_strokePaint.setStrokeJoin(SkPaint::kDefault_Join);
+ m_strokePaint.setStrokeCap(PaintFlags::kDefault_Cap);
+ m_strokePaint.setStrokeJoin(PaintFlags::kDefault_Join);
m_strokePaint.setStrokeMiter(SkFloatToScalar(m_strokeData.miterLimit()));
m_strokePaint.setFilterQuality(filterQualityForPaint(m_interpolationQuality));
m_strokePaint.setAntiAlias(m_shouldAntialias);
@@ -48,7 +48,8 @@ void GraphicsContextState::copy(const GraphicsContextState& source) {
new (this) GraphicsContextState(source);
}
-const SkPaint& GraphicsContextState::strokePaint(int strokedPathLength) const {
+const PaintFlags& GraphicsContextState::strokePaint(
+ int strokedPathLength) const {
m_strokeData.setupPaintDashPathEffect(&m_strokePaint, strokedPathLength);
return m_strokePaint;
}
@@ -69,12 +70,12 @@ void GraphicsContextState::setStrokeColor(const Color& color) {
void GraphicsContextState::setLineCap(LineCap cap) {
m_strokeData.setLineCap(cap);
- m_strokePaint.setStrokeCap((SkPaint::Cap)cap);
+ m_strokePaint.setStrokeCap((PaintFlags::Cap)cap);
}
void GraphicsContextState::setLineJoin(LineJoin join) {
m_strokeData.setLineJoin(join);
- m_strokePaint.setStrokeJoin((SkPaint::Join)join);
+ m_strokePaint.setStrokeJoin((PaintFlags::Join)join);
}
void GraphicsContextState::setMiterLimit(float miterLimit) {

Powered by Google App Engine
This is Rietveld 408576698