Index: Source/core/frame/LocalFrame.cpp |
diff --git a/Source/core/frame/LocalFrame.cpp b/Source/core/frame/LocalFrame.cpp |
index 6aca44404556fa05359978208d7f6f5daea63eec..a9872bb5c1786fcbbfbcdab0460627ee8cd557ca 100644 |
--- a/Source/core/frame/LocalFrame.cpp |
+++ b/Source/core/frame/LocalFrame.cpp |
@@ -116,9 +116,8 @@ PassRefPtrWillBeRawPtr<LocalFrame> LocalFrame::create(FrameLoaderClient* client, |
LocalFrame::~LocalFrame() |
{ |
#if ENABLE(OILPAN) |
- // Verify that the FrameView and FrameLoader have instead been |
- // cleared as part of detaching the frame owner. |
- ASSERT(!m_owner); |
+ // Verify that the FrameView has been cleared as part of detaching |
+ // the frame owner. |
ASSERT(!m_view); |
// Oilpan: see setDOMWindow() comment why it is acceptable not to |
// mirror the non-Oilpan call below. |