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

Unified Diff: Source/core/fetch/DocumentResource.h

Issue 424723002: Oilpan: Change Persistent members of Resource subclasses to Member. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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/fetch/CSSStyleSheetResource.cpp ('k') | Source/core/fetch/DocumentResource.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/fetch/DocumentResource.h
diff --git a/Source/core/fetch/DocumentResource.h b/Source/core/fetch/DocumentResource.h
index e32fd1dc5b9735aef897831f2be48da2adc4e5d4..6f9b8cda9028bf1aed641dfe09f86c30fb773e72 100644
--- a/Source/core/fetch/DocumentResource.h
+++ b/Source/core/fetch/DocumentResource.h
@@ -38,6 +38,7 @@ public:
DocumentResource(const ResourceRequest&, Type);
virtual ~DocumentResource();
+ virtual void trace(Visitor*) OVERRIDE;
Document* document() const { return m_document.get(); }
@@ -48,7 +49,7 @@ public:
private:
PassRefPtrWillBeRawPtr<Document> createDocument(const KURL&);
- RefPtrWillBePersistent<Document> m_document;
+ RefPtrWillBeMember<Document> m_document;
OwnPtr<TextResourceDecoder> m_decoder;
};
« no previous file with comments | « Source/core/fetch/CSSStyleSheetResource.cpp ('k') | Source/core/fetch/DocumentResource.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698