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

Unified Diff: third_party/WebKit/Source/platform/graphics/paint/DrawingRecorder.cpp

Issue 2716203002: blink: Fix cc/paint skia type mismatches (Closed)
Patch Set: Fix canvas Created 3 years, 10 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/paint/DrawingRecorder.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/paint/DrawingRecorder.cpp b/third_party/WebKit/Source/platform/graphics/paint/DrawingRecorder.cpp
index f45e81a75d3db9b52e6e1cce916dd7b10779d53a..8b5e708f4ad28bcc03db113456d21ecf8e5c5471 100644
--- a/third_party/WebKit/Source/platform/graphics/paint/DrawingRecorder.cpp
+++ b/third_party/WebKit/Source/platform/graphics/paint/DrawingRecorder.cpp
@@ -88,7 +88,7 @@ DrawingRecorder::~DrawingRecorder() {
}
#endif
- sk_sp<const SkPicture> picture = m_context.endRecording();
+ sk_sp<const PaintRecord> picture = m_context.endRecording();
#if DCHECK_IS_ON()
if (!RuntimeEnabledFeatures::slimmingPaintStrictCullRectClippingEnabled() &&

Powered by Google App Engine
This is Rietveld 408576698