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

Unified Diff: Source/core/frame/FrameDestructionObserver.h

Issue 896523004: Revert "Revert of Revert of Issue FrameDestructionObserver::frameDestroyed() notification on detach… (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
Index: Source/core/frame/FrameDestructionObserver.h
diff --git a/Source/core/frame/FrameDestructionObserver.h b/Source/core/frame/FrameDestructionObserver.h
index b4dd3d997d78ad67af154485addaa9cc3b0d17dd..a62d20210447fe2a5986198e606afdd637e4bbd7 100644
--- a/Source/core/frame/FrameDestructionObserver.h
+++ b/Source/core/frame/FrameDestructionObserver.h
@@ -36,7 +36,15 @@ class FrameDestructionObserver : public WillBeGarbageCollectedMixin {
public:
explicit FrameDestructionObserver(LocalFrame*);
+#if !ENABLE(OILPAN)
+ // Oilpan: there is no known need for directly observing
+ // frameDestroyed() with Oilpan enabled, as its clearing is
+ // handled by keeping a weak reference.
+ //
+ // A weak callback version of frameDestroyed() can be reintroduced
+ // later, should the need arise.
virtual void frameDestroyed();
+#endif
virtual void willDetachFrameHost();
LocalFrame* frame() const { return m_frame; }

Powered by Google App Engine
This is Rietveld 408576698