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

Unified Diff: third_party/WebKit/Source/core/paint/SVGTextPainter.cpp

Issue 2059433002: Use transform paint property nodes in SVG [spv2] (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@svgTransformProps2
Patch Set: Post-blinkon rebase, add some dchecks, add some fixmes Created 4 years, 6 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
« no previous file with comments | « third_party/WebKit/Source/core/paint/SVGShapePainter.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/paint/SVGTextPainter.cpp
diff --git a/third_party/WebKit/Source/core/paint/SVGTextPainter.cpp b/third_party/WebKit/Source/core/paint/SVGTextPainter.cpp
index acbb6b798b72015574d2767bcca3f3a5a59ec5eb..e4233ef91c35880ad3d1b7fd1e46967031aa144d 100644
--- a/third_party/WebKit/Source/core/paint/SVGTextPainter.cpp
+++ b/third_party/WebKit/Source/core/paint/SVGTextPainter.cpp
@@ -7,7 +7,7 @@
#include "core/layout/svg/LayoutSVGText.h"
#include "core/paint/BlockPainter.h"
#include "core/paint/PaintInfo.h"
-#include "core/paint/TransformRecorder.h"
+#include "core/paint/SVGPaintContext.h"
namespace blink {
@@ -18,7 +18,7 @@ void SVGTextPainter::paint(const PaintInfo& paintInfo)
PaintInfo blockInfo(paintInfo);
blockInfo.updateCullRect(m_layoutSVGText.localToSVGParentTransform());
- TransformRecorder transformRecorder(blockInfo.context, m_layoutSVGText, m_layoutSVGText.localToSVGParentTransform());
+ SVGTransformContext transformContext(blockInfo.context, m_layoutSVGText, m_layoutSVGText.localToSVGParentTransform());
BlockPainter(m_layoutSVGText).paint(blockInfo, LayoutPoint());
« no previous file with comments | « third_party/WebKit/Source/core/paint/SVGShapePainter.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698