Index: third_party/WebKit/Source/core/loader/DocumentThreadableLoader.h |
diff --git a/third_party/WebKit/Source/core/loader/DocumentThreadableLoader.h b/third_party/WebKit/Source/core/loader/DocumentThreadableLoader.h |
index dd691c59819e40d8952879a2cd74f6ccf7dc20dd..447256a257358757dbbb950cea2099f6499d4395 100644 |
--- a/third_party/WebKit/Source/core/loader/DocumentThreadableLoader.h |
+++ b/third_party/WebKit/Source/core/loader/DocumentThreadableLoader.h |
@@ -147,9 +147,10 @@ class CORE_EXPORT DocumentThreadableLoader final : public ThreadableLoader, priv |
StoredCredentials effectiveAllowCredentials() const; |
SecurityOrigin* securityOrigin() const; |
+ Document& document() const; |
ThreadableLoaderClient* m_client; |
- Document& m_document; |
+ RawPtrWillBeUntracedMember<Document> m_document; |
haraken
2015/11/12 14:23:54
So this should be WeakPersistent if it's hard to m
sof
2015/11/16 21:16:18
WeakPersistent<> it is (for now.)
|
const ThreadableLoaderOptions m_options; |
// Some items may be overridden by m_forceDoNotAllowStoredCredentials |