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

Unified Diff: third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceClipper.cpp

Issue 2523673004: [NOT FOR COMMIT] Fully replace SkCanvas uses.
Patch Set: Support Android build. Created 4 years 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/core/layout/svg/LayoutSVGResourceClipper.cpp
diff --git a/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceClipper.cpp b/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceClipper.cpp
index 9ed7c72d32a89996c6a5310e3624e0244119abb8..9e7a1bdf1aebe065069eabd916ea216afe54cb9d 100644
--- a/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceClipper.cpp
+++ b/third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceClipper.cpp
@@ -31,7 +31,7 @@
#include "core/svg/SVGUseElement.h"
#include "platform/RuntimeEnabledFeatures.h"
#include "platform/graphics/paint/SkPictureBuilder.h"
-#include "third_party/skia/include/core/SkPicture.h"
+#include "skia/ext/cdl_picture.h"
#include "third_party/skia/include/pathops/SkPathOps.h"
namespace blink {
@@ -165,7 +165,7 @@ bool LayoutSVGResourceClipper::asPath(
return true;
}
-sk_sp<const SkPicture> LayoutSVGResourceClipper::createContentPicture() {
+sk_sp<const CdlPicture> LayoutSVGResourceClipper::createContentPicture() {
ASSERT(frame());
if (m_clipContentPicture)
return m_clipContentPicture;

Powered by Google App Engine
This is Rietveld 408576698