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

Unified Diff: sky/engine/core/painting/CanvasPath.h

Issue 1158843002: Sky: Add a Point class. (Closed) Base URL: git@github.com:/domokit/mojo.git@master
Patch Set: Created 5 years, 7 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: sky/engine/core/painting/CanvasPath.h
diff --git a/sky/engine/core/painting/CanvasPath.h b/sky/engine/core/painting/CanvasPath.h
index 05d94e0757177274b33cb2666f77a440431e15b8..96f28ae28233f7226e3eee7c43458f546954aee1 100644
--- a/sky/engine/core/painting/CanvasPath.h
+++ b/sky/engine/core/painting/CanvasPath.h
@@ -38,7 +38,7 @@ public:
void arcTo(const Rect& rect, float startAngle, float sweepAngle, bool forceMoveTo)
{
- m_path.arcTo(rect.sk_rect, startAngle, sweepAngle, forceMoveTo);
+ m_path.arcTo(rect.skRect, startAngle, sweepAngle, forceMoveTo);
}
void close()

Powered by Google App Engine
This is Rietveld 408576698