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

Unified Diff: Source/core/loader/FrameLoader.cpp

Issue 42523003: [oilpan] Don't notify CachedResourceClients of cancel events when detaching the frame. (Closed) Base URL: svn://svn.chromium.org/blink/branches/oilpan
Patch Set: Created 7 years, 2 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/loader/FrameLoader.h ('k') | Source/core/loader/cache/CachedResource.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/loader/FrameLoader.cpp
diff --git a/Source/core/loader/FrameLoader.cpp b/Source/core/loader/FrameLoader.cpp
index 529191ca6e437ccbcd38f67367432a24e5252e0b..6d85b6196403bb0ba98fdf726a2102141cf09183 100644
--- a/Source/core/loader/FrameLoader.cpp
+++ b/Source/core/loader/FrameLoader.cpp
@@ -224,6 +224,7 @@ FrameLoader::FrameLoader(Frame* frame, FrameLoaderClient* client)
, m_didAccessInitialDocumentTimer(this, &FrameLoader::didAccessInitialDocumentTimerFired)
, m_suppressOpenerInNewFrame(false)
, m_forcedSandboxFlags(SandboxNone)
+ , m_frameDetaching(false)
{
}
@@ -2092,8 +2093,14 @@ void FrameLoader::handledOnloadEvents()
documentLoader()->handledOnloadEvents();
}
+bool FrameLoader::isFrameDetaching()
+{
+ return m_frameDetaching;
+}
+
void FrameLoader::frameDetached()
{
+ m_frameDetaching = true;
// stopAllLoaders can detach the Frame, so protect it.
RefPtr<Frame> protect(m_frame);
stopAllLoaders();
« no previous file with comments | « Source/core/loader/FrameLoader.h ('k') | Source/core/loader/cache/CachedResource.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698