| Index: third_party/WebKit/Source/core/layout/LayoutTestHelper.h
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutTestHelper.h b/third_party/WebKit/Source/core/layout/LayoutTestHelper.h
|
| index caaeddb2f37b4b054b44805be15bc341ffabd48e..81eb4dcef5ec511a0ae43f3694f7e4da40f7bf58 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTestHelper.h
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTestHelper.h
|
| @@ -38,6 +38,9 @@ protected:
|
| document().view()->updateAllLifecyclePhases();
|
| }
|
|
|
| + // Returns the Document for the iframe.
|
| + Document& setupChildIframe(const AtomicString& iframeElementId, const String& htmlContentOfIframe);
|
| +
|
| // Both enables compositing and runs the document lifecycle.
|
| void enableCompositing()
|
| {
|
| @@ -46,6 +49,8 @@ protected:
|
| }
|
|
|
| private:
|
| + RefPtrWillBePersistent<LocalFrame> m_subframe;
|
| + OwnPtrWillBePersistent<FrameLoaderClient> m_frameLoaderClient;
|
| OwnPtr<DummyPageHolder> m_pageHolder;
|
| };
|
|
|
|
|