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

Unified Diff: third_party/WebKit/Source/web/WebLocalFrameImpl.cpp

Issue 2713673005: client-goodbye
Patch Set: 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
« no previous file with comments | « third_party/WebKit/Source/web/PageWidgetDelegate.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/web/WebLocalFrameImpl.cpp
diff --git a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
index 5a917d88d3f8e6dc534087a051f26899c2a9f089..f031be7508e032d0cf7c2b0e34a1fbb856989d58 100644
--- a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
+++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
@@ -368,7 +368,9 @@ class ChromePrintContext : public PrintContext {
float scale = getPageShrink(pageIndex);
transform.scale(scale, scale);
#endif
- TransformRecorder transformRecorder(context, builder, transform);
+ TransformRecorder transformRecorder(
+ context, transform, builder.visualRect(), builder.debugName(),
+ builder.paintedOutputOfObjectHasNoEffectRegardlessOfSize());
spoolPage(builder, pageIndex);
currentHeight += pageSizeInPixels.height() + 1;
@@ -394,7 +396,9 @@ class ChromePrintContext : public PrintContext {
#endif
transform.translate(static_cast<float>(-pageRect.x()),
static_cast<float>(-pageRect.y()));
- TransformRecorder transformRecorder(context, builder, transform);
+ TransformRecorder transformRecorder(
+ context, transform, builder.visualRect(), builder.debugName(),
+ builder.paintedOutputOfObjectHasNoEffectRegardlessOfSize());
ClipRecorder clipRecorder(context, builder, DisplayItem::kClipPrintedPage,
pageRect);
« no previous file with comments | « third_party/WebKit/Source/web/PageWidgetDelegate.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698