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

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

Issue 2784373004: [SPv2] Replay DragImages into PropertyTreeState of the enclosing stacking context (Closed)
Patch Set: none Created 3 years, 9 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/platform/graphics/paint/PaintRecordBuilder.h ('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/platform/graphics/paint/PaintRecordBuilder.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/paint/PaintRecordBuilder.cpp b/third_party/WebKit/Source/platform/graphics/paint/PaintRecordBuilder.cpp
index c38eb19d187ddd65820a134a21ac2b9bcd9b16d2..5c24e3cd4e80ae2accc48436e7269d29531d3beb 100644
--- a/third_party/WebKit/Source/platform/graphics/paint/PaintRecordBuilder.cpp
+++ b/third_party/WebKit/Source/platform/graphics/paint/PaintRecordBuilder.cpp
@@ -51,10 +51,12 @@ PaintRecordBuilder::~PaintRecordBuilder() {
#endif
}
-sk_sp<PaintRecord> PaintRecordBuilder::endRecording() {
+sk_sp<PaintRecord> PaintRecordBuilder::endRecording(
+ const PropertyTreeState& propertyTreeState) {
m_context->beginRecording(m_bounds);
m_paintController->commitNewDisplayItems();
- m_paintController->paintArtifact().replay(m_bounds, *m_context);
+ m_paintController->paintArtifact().replay(m_bounds, *m_context,
+ propertyTreeState);
return m_context->endRecording();
}
« no previous file with comments | « third_party/WebKit/Source/platform/graphics/paint/PaintRecordBuilder.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698