| 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 dc6d379dc9e972221f5df1cf15f541e1788ae25c..66e9c3809beba69318ee31a52258b4d3d6ca39a6 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;
|
|
|
| @@ -67,7 +68,8 @@ class DummyPageHolder {
|
| const IntSize& initialViewSize = IntSize(),
|
| Page::PageClients* = 0,
|
| FrameLoaderClient* = nullptr,
|
| - FrameSettingOverrideFunction = nullptr);
|
| + FrameSettingOverrideFunction = nullptr,
|
| + InterfaceProvider* = nullptr);
|
| ~DummyPageHolder();
|
|
|
| Page& page() const;
|
| @@ -79,7 +81,8 @@ class DummyPageHolder {
|
| DummyPageHolder(const IntSize& initialViewSize,
|
| Page::PageClients*,
|
| FrameLoaderClient*,
|
| - FrameSettingOverrideFunction settingOverrider);
|
| + FrameSettingOverrideFunction settingOverrider,
|
| + InterfaceProvider* = nullptr);
|
|
|
| Persistent<Page> m_page;
|
| Persistent<LocalFrame> m_frame;
|
|
|