| Index: third_party/WebKit/Source/core/page/PrintContextTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/page/PrintContextTest.cpp b/third_party/WebKit/Source/core/page/PrintContextTest.cpp
|
| index c0f7b1a3dab90c79590697c7a110657e069f4745..9b45ea484572e78013010c77fc7edbd5c6376ab0 100644
|
| --- a/third_party/WebKit/Source/core/page/PrintContextTest.cpp
|
| +++ b/third_party/WebKit/Source/core/page/PrintContextTest.cpp
|
| @@ -90,7 +90,7 @@ class PrintContextTest : public RenderingTest {
|
|
|
| void PrintSinglePage(MockCanvas& canvas) {
|
| IntRect page_rect(0, 0, kPageWidth, kPageHeight);
|
| - PrintContext().begin(page_rect.Width(), page_rect.Height());
|
| + PrintContext().BeginPrintMode(page_rect.Width(), page_rect.Height());
|
| GetDocument().View()->UpdateAllLifecyclePhases();
|
| PaintRecordBuilder builder(page_rect);
|
| GraphicsContext& context = builder.Context();
|
| @@ -104,7 +104,7 @@ class PrintContextTest : public RenderingTest {
|
| PrintContext().OutputLinkedDestinations(context, page_rect);
|
| }
|
| builder.EndRecording()->playback(&canvas);
|
| - PrintContext().end();
|
| + PrintContext().EndPrintMode();
|
| }
|
|
|
| static String AbsoluteBlockHtmlForLink(int x,
|
|
|