Index: Source/core/testing/DummyPageHolder.h |
diff --git a/Source/core/testing/DummyPageHolder.h b/Source/core/testing/DummyPageHolder.h |
index 6f2df5d4125d6fb0ec2c1922bd2342b4c8363702..d8633ed49f15bdbf0a3539098729e4833a30f4d8 100644 |
--- a/Source/core/testing/DummyPageHolder.h |
+++ b/Source/core/testing/DummyPageHolder.h |
@@ -60,7 +60,7 @@ class DummyPageHolder { |
WTF_MAKE_NONCOPYABLE(DummyPageHolder); |
WTF_MAKE_FAST_ALLOCATED; |
public: |
- static PassOwnPtr<DummyPageHolder> create(const IntSize& initialViewSize = IntSize()); |
+ static PassOwnPtr<DummyPageHolder> create(const IntSize& initialViewSize = IntSize(), Page::PageClients* = 0); |
~DummyPageHolder(); |
Page& page() const; |
@@ -69,7 +69,7 @@ public: |
Document& document() const; |
private: |
- explicit DummyPageHolder(const IntSize& initialViewSize); |
+ explicit DummyPageHolder(const IntSize& initialViewSize, Page::PageClients*); |
OwnPtrWillBePersistent<Page> m_page; |
RefPtr<LocalFrame> m_frame; |