Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2393)

Unified Diff: Source/core/testing/DummyPageHolder.h

Issue 517043003: Move Frame to the Oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Back out non-Oilpan experiment + tidy up by adding frame() ref accessors Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/testing/DummyPageHolder.h
diff --git a/Source/core/testing/DummyPageHolder.h b/Source/core/testing/DummyPageHolder.h
index fe658f04a5686406bec89b5f9236929bb9f05134..554b07c26bef4925a3bca0c773b964cc375c0167 100644
--- a/Source/core/testing/DummyPageHolder.h
+++ b/Source/core/testing/DummyPageHolder.h
@@ -72,13 +72,10 @@ public:
Document& document() const;
private:
- explicit DummyPageHolder(
- const IntSize& initialViewSize,
- Page::PageClients*,
- PassOwnPtr<FrameLoaderClient>);
+ DummyPageHolder(const IntSize& initialViewSize, Page::PageClients*, PassOwnPtr<FrameLoaderClient>);
OwnPtrWillBePersistent<Page> m_page;
- RefPtr<LocalFrame> m_frame;
+ RefPtrWillBePersistent<LocalFrame> m_frame;
Page::PageClients m_pageClients;
OwnPtr<FrameLoaderClient> m_frameLoaderClient;

Powered by Google App Engine
This is Rietveld 408576698