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

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

Issue 1024263002: Remove ResourceFetcher's access to a real FetchContext at frame detach time (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 9 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/core/fetch/ResourceFetcher.h
diff --git a/Source/core/fetch/ResourceFetcher.h b/Source/core/fetch/ResourceFetcher.h
index 98f791aec67dd39f2a190759ab22097c1dad4e5d..e87fd774f1fa5f385705ffbf8588c101ac676a27 100644
--- a/Source/core/fetch/ResourceFetcher.h
+++ b/Source/core/fetch/ResourceFetcher.h
@@ -103,7 +103,8 @@ public:
bool shouldDeferImageLoad(const KURL&) const;
- FetchContext& context() const { return *m_context.get(); }
+ FetchContext& context() const { return m_context ? *m_context.get() : FetchContext::nullInstance(); }
+ void clearContext() { m_context.clear(); }
void garbageCollectDocumentResources();

Powered by Google App Engine
This is Rietveld 408576698