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

Unified Diff: third_party/WebKit/Source/platform/graphics/RecordingImageBufferSurface.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/RecordingImageBufferSurface.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/RecordingImageBufferSurface.cpp b/third_party/WebKit/Source/platform/graphics/RecordingImageBufferSurface.cpp
index f67d5eb9cc8286234573eed0edb0cd5bc3849fec..1b81bb3b60dae24db2760fa58dd1ce78d928b28c 100644
--- a/third_party/WebKit/Source/platform/graphics/RecordingImageBufferSurface.cpp
+++ b/third_party/WebKit/Source/platform/graphics/RecordingImageBufferSurface.cpp
@@ -9,8 +9,7 @@
#include "platform/graphics/ExpensiveCanvasHeuristicParameters.h"
#include "platform/graphics/GraphicsContext.h"
#include "platform/graphics/ImageBuffer.h"
-#include "third_party/skia/include/core/SkCanvas.h"
-#include "third_party/skia/include/core/SkPictureRecorder.h"
+#include "platform/graphics/paint/PaintRecorder.h"
#include "wtf/PassRefPtr.h"
#include "wtf/PtrUtil.h"
#include <memory>
@@ -39,8 +38,8 @@ RecordingImageBufferSurface::~RecordingImageBufferSurface() {}
void RecordingImageBufferSurface::initializeCurrentFrame() {
static SkRTreeFactory rTreeFactory;
- m_currentFrame = WTF::wrapUnique(new SkPictureRecorder);
- SkCanvas* canvas = m_currentFrame->beginRecording(
+ m_currentFrame = WTF::wrapUnique(new PaintRecorder);
+ PaintCanvas* canvas = m_currentFrame->beginRecording(
size().width(), size().height(), &rTreeFactory);
// Always save an initial frame, to support resetting the top level matrix
// and clip.
@@ -180,7 +179,7 @@ sk_sp<SkImage> RecordingImageBufferSurface::newImageSnapshot(
return m_fallbackSurface->newImageSnapshot(hint, reason);
}
-SkCanvas* RecordingImageBufferSurface::canvas() {
+PaintCanvas* RecordingImageBufferSurface::canvas() {
if (m_fallbackSurface)
return m_fallbackSurface->canvas();
@@ -223,7 +222,7 @@ void RecordingImageBufferSurface::disableDeferral(
fallBackToRasterCanvas(disableDeferralReasonToFallbackReason(reason));
}
-sk_sp<SkPicture> RecordingImageBufferSurface::getPicture() {
+sk_sp<PaintRecord> RecordingImageBufferSurface::getPicture() {
if (m_fallbackSurface)
return nullptr;
@@ -342,7 +341,7 @@ void RecordingImageBufferSurface::draw(GraphicsContext& context,
return;
}
- sk_sp<SkPicture> picture = getPicture();
+ sk_sp<PaintRecord> picture = getPicture();
if (picture) {
context.compositePicture(std::move(picture), destRect, srcRect, op);
} else {

Powered by Google App Engine
This is Rietveld 408576698