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 5826cacd0a6e23ad3606c08c47422bf1ece5987b..4457c2c28793b0a73cc1e1a27ea57532918ceccd 100644 |
--- a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp |
+++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp |
@@ -310,7 +310,7 @@ class ChromePrintContext : public PrintContext { |
builder.context().setPrinting(true); |
float scale = spoolPage(builder, pageNumber); |
- canvas->drawPicture(builder.endRecording()); |
+ canvas->PlaybackPaintRecord(builder.endRecording().get()); |
return scale; |
} |
@@ -377,7 +377,7 @@ class ChromePrintContext : public PrintContext { |
currentHeight += pageSizeInPixels.height() + 1; |
} |
} |
- canvas->drawPicture(builder.endRecording()); |
+ canvas->PlaybackPaintRecord(builder.endRecording().get()); |
} |
protected: |