| Index: third_party/WebKit/Source/core/testing/DummyPageHolder.h
|
| diff --git a/third_party/WebKit/Source/core/testing/DummyPageHolder.h b/third_party/WebKit/Source/core/testing/DummyPageHolder.h
|
| index fa340410fbc87b776bcd4642355bce29f66d3da1..7f12405bba9c0e73fe7d60e4a11f27829c366b41 100644
|
| --- a/third_party/WebKit/Source/core/testing/DummyPageHolder.h
|
| +++ b/third_party/WebKit/Source/core/testing/DummyPageHolder.h
|
| @@ -44,6 +44,7 @@ namespace blink {
|
| class Document;
|
| class LocalFrame;
|
| class FrameView;
|
| +class InterfaceProvider;
|
| class IntSize;
|
| class Settings;
|
|
|
| @@ -66,7 +67,7 @@ public:
|
| const IntSize& initialViewSize = IntSize(),
|
| Page::PageClients* = 0,
|
| FrameLoaderClient* = nullptr,
|
| - FrameSettingOverrideFunction = nullptr);
|
| + FrameSettingOverrideFunction = nullptr, InterfaceProvider* = nullptr);
|
| ~DummyPageHolder();
|
|
|
| Page& page() const;
|
| @@ -75,7 +76,7 @@ public:
|
| Document& document() const;
|
|
|
| private:
|
| - DummyPageHolder(const IntSize& initialViewSize, Page::PageClients*, FrameLoaderClient*, FrameSettingOverrideFunction settingOverrider);
|
| + DummyPageHolder(const IntSize& initialViewSize, Page::PageClients*, FrameLoaderClient*, FrameSettingOverrideFunction settingOverrider, InterfaceProvider* = nullptr);
|
|
|
| Persistent<Page> m_page;
|
| Persistent<LocalFrame> m_frame;
|
|
|