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

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

Issue 594503002: Oilpan: adjust placement of no-FrameOwner assert. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 3 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/frame/Frame.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.
« no previous file with comments | « Source/core/frame/Frame.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698