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

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

Issue 1306793003: Oilpan: Move FrameLoaderClient class hierarchy into Oilpan heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 4 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
« no previous file with comments | « Source/core/svg/graphics/SVGImage.cpp ('k') | Source/core/testing/DummyPageHolder.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/testing/DummyPageHolder.h
diff --git a/Source/core/testing/DummyPageHolder.h b/Source/core/testing/DummyPageHolder.h
index 854fe25c906ffb4588d84c9d99dfc944bc4fe8fc..e345cdf25dda68d9f7f2610bfe5805296490598d 100644
--- a/Source/core/testing/DummyPageHolder.h
+++ b/Source/core/testing/DummyPageHolder.h
@@ -63,7 +63,7 @@ public:
static PassOwnPtr<DummyPageHolder> create(
const IntSize& initialViewSize = IntSize(),
Page::PageClients* = 0,
- PassOwnPtr<FrameLoaderClient> = PassOwnPtr<FrameLoaderClient>());
+ PassOwnPtrWillBeRawPtr<FrameLoaderClient> = nullptr);
~DummyPageHolder();
Page& page() const;
@@ -72,12 +72,12 @@ public:
Document& document() const;
private:
- DummyPageHolder(const IntSize& initialViewSize, Page::PageClients*, PassOwnPtr<FrameLoaderClient>);
+ DummyPageHolder(const IntSize& initialViewSize, Page::PageClients*, PassOwnPtrWillBeRawPtr<FrameLoaderClient>);
OwnPtrWillBePersistent<Page> m_page;
RefPtrWillBePersistent<LocalFrame> m_frame;
- OwnPtr<FrameLoaderClient> m_frameLoaderClient;
+ OwnPtrWillBePersistent<FrameLoaderClient> m_frameLoaderClient;
};
} // namespace blink
« no previous file with comments | « Source/core/svg/graphics/SVGImage.cpp ('k') | Source/core/testing/DummyPageHolder.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698