Chromium Code Reviews

Unified Diff: Source/core/frame/RemoteFrame.cpp

Issue 551973005: Streamline frame detach (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: Source/core/frame/RemoteFrame.cpp
diff --git a/Source/core/frame/RemoteFrame.cpp b/Source/core/frame/RemoteFrame.cpp
index ae7408abaf2b4476e58f467480ff6a6449d0df8c..d06549179e31614f877ea3195d240303b984827b 100644
--- a/Source/core/frame/RemoteFrame.cpp
+++ b/Source/core/frame/RemoteFrame.cpp
@@ -29,7 +29,7 @@ RemoteFrame::~RemoteFrame()
void RemoteFrame::detach()
{
detachChildren();
- m_host = 0;
+ Frame::detach();
}
void RemoteFrame::setView(PassRefPtr<RemoteFrameView> view)

Powered by Google App Engine