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

Unified Diff: Source/core/loader/FrameFetchContext.h

Issue 967893002: Have FrameFetchContext check for frame detached status more often. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 10 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 | « no previous file | Source/core/loader/FrameFetchContext.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/loader/FrameFetchContext.h
diff --git a/Source/core/loader/FrameFetchContext.h b/Source/core/loader/FrameFetchContext.h
index c2f63908575aa4b6389a8783a7ad483c8830e421..dd850e2dcf820fbd0f7d03bbe3a0d8b7c25cfa5f 100644
--- a/Source/core/loader/FrameFetchContext.h
+++ b/Source/core/loader/FrameFetchContext.h
@@ -58,7 +58,7 @@ public:
LocalFrame* frame() const override; // Can be null
Document* document() const override { return m_document; } // Can be null
- void setDocument(RawPtr<Document> document) { m_document = document; }
+ void setDocument(Document* document) { m_document = document; }
DocumentLoader* documentLoader() const override { return m_documentLoader; }
void clearDocumentLoader() { m_documentLoader = nullptr; }
« no previous file with comments | « no previous file | Source/core/loader/FrameFetchContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698