| Index: third_party/WebKit/Source/web/tests/WebPluginContainerTest.cpp
|
| diff --git a/third_party/WebKit/Source/web/tests/WebPluginContainerTest.cpp b/third_party/WebKit/Source/web/tests/WebPluginContainerTest.cpp
|
| index 8528137be78d62099bd41ce4e6b038e9d3fdd890..e892f0abc8bf5e95f522faedf4ee860cd5c179ab 100644
|
| --- a/third_party/WebKit/Source/web/tests/WebPluginContainerTest.cpp
|
| +++ b/third_party/WebKit/Source/web/tests/WebPluginContainerTest.cpp
|
| @@ -59,7 +59,7 @@
|
| #include "public/web/WebSettings.h"
|
| #include "public/web/WebView.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| -#include "third_party/skia/include/core/SkPictureRecorder.h"
|
| +#include "skia/ext/cdl_picture_recorder.h"
|
| #include "web/WebLocalFrameImpl.h"
|
| #include "web/WebPluginContainerImpl.h"
|
| #include "web/WebViewImpl.h"
|
| @@ -257,7 +257,7 @@ TEST_F(WebPluginContainerTest, PrintOnePage) {
|
| printParams.printContentArea.height = 500;
|
|
|
| frame->printBegin(printParams);
|
| - SkPictureRecorder recorder;
|
| + CdlPictureRecorder recorder;
|
| frame->printPage(0, recorder.beginRecording(IntRect()));
|
| frame->printEnd();
|
| DCHECK(pluginWebFrameClient.printedAtLeastOnePage());
|
| @@ -282,7 +282,7 @@ TEST_F(WebPluginContainerTest, PrintAllPages) {
|
| printParams.printContentArea.height = 500;
|
|
|
| frame->printBegin(printParams);
|
| - SkPictureRecorder recorder;
|
| + CdlPictureRecorder recorder;
|
| frame->printPagesWithBoundaries(recorder.beginRecording(IntRect()),
|
| WebSize());
|
| frame->printEnd();
|
|
|