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

Unified Diff: Source/web/RemoteFrameClientImpl.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/web/InspectorOverlayImpl.cpp ('k') | Source/web/RemoteFrameClientImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/RemoteFrameClientImpl.h
diff --git a/Source/web/RemoteFrameClientImpl.h b/Source/web/RemoteFrameClientImpl.h
index f206675202d812d8fe670fe2980838aa478ae4d5..eb2342d87a0e26d08b8059cc0cadaeee73ee3059 100644
--- a/Source/web/RemoteFrameClientImpl.h
+++ b/Source/web/RemoteFrameClientImpl.h
@@ -12,7 +12,9 @@ class WebRemoteFrameImpl;
class RemoteFrameClientImpl final : public RemoteFrameClient {
public:
- explicit RemoteFrameClientImpl(WebRemoteFrameImpl*);
+ static PassOwnPtrWillBeRawPtr<RemoteFrameClientImpl> create(WebRemoteFrameImpl*);
+
+ DECLARE_VIRTUAL_TRACE();
// FrameClient overrides:
bool inShadowTree() const override;
@@ -38,7 +40,9 @@ public:
WebRemoteFrameImpl* webFrame() const { return m_webFrame; }
private:
- WebRemoteFrameImpl* m_webFrame;
+ explicit RemoteFrameClientImpl(WebRemoteFrameImpl*);
+
+ RawPtrWillBeMember<WebRemoteFrameImpl> m_webFrame;
};
} // namespace blink
« no previous file with comments | « Source/web/InspectorOverlayImpl.cpp ('k') | Source/web/RemoteFrameClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698