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

Unified Diff: Source/web/AssociatedURLLoader.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/web/AssociatedURLLoader.h
diff --git a/Source/web/AssociatedURLLoader.h b/Source/web/AssociatedURLLoader.h
index 1d111a94ec613d3788f70900bf897eea2b662693..c7032a34ce53c31174208be21e0ea1dd1ffc2afa 100644
--- a/Source/web/AssociatedURLLoader.h
+++ b/Source/web/AssociatedURLLoader.h
@@ -46,7 +46,7 @@ class WebLocalFrameImpl;
class AssociatedURLLoader FINAL : public WebURLLoader {
WTF_MAKE_NONCOPYABLE(AssociatedURLLoader);
public:
- AssociatedURLLoader(PassRefPtr<WebLocalFrameImpl>, const WebURLLoaderOptions&);
+ AssociatedURLLoader(PassRefPtrWillBeRawPtr<WebLocalFrameImpl>, const WebURLLoaderOptions&);
~AssociatedURLLoader();
// WebURLLoader methods:
@@ -59,7 +59,7 @@ private:
class ClientAdapter;
- RefPtr<WebLocalFrameImpl> m_frameImpl;
+ RefPtrWillBePersistent<WebLocalFrameImpl> m_frameImpl;
WebURLLoaderOptions m_options;
WebURLLoaderClient* m_client;
OwnPtr<ClientAdapter> m_clientAdapter;

Powered by Google App Engine
This is Rietveld 408576698