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

Side by Side Diff: Source/core/loader/FrameLoader.cpp

Issue 1298643003: Fixes crash when swapping frames (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 4 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserv ed. 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserv ed.
3 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) 3 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
4 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 4 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
5 * Copyright (C) 2008 Alp Toker <alp@atoker.com> 5 * Copyright (C) 2008 Alp Toker <alp@atoker.com>
6 * Copyright (C) Research In Motion Limited 2009. All rights reserved. 6 * Copyright (C) Research In Motion Limited 2009. All rights reserved.
7 * Copyright (C) 2011 Kris Jordan <krisjordan@gmail.com> 7 * Copyright (C) 2011 Kris Jordan <krisjordan@gmail.com>
8 * Copyright (C) 2011 Google Inc. All rights reserved. 8 * Copyright (C) 2011 Google Inc. All rights reserved.
9 * 9 *
10 * Redistribution and use in source and binary forms, with or without 10 * Redistribution and use in source and binary forms, with or without
(...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after
475 return; 475 return;
476 476
477 // This can be called from the LocalFrame's destructor, in which case we sho uldn't protect ourselves 477 // This can be called from the LocalFrame's destructor, in which case we sho uldn't protect ourselves
478 // because doing so will cause us to re-enter the destructor when protector goes out of scope. 478 // because doing so will cause us to re-enter the destructor when protector goes out of scope.
479 // Null-checking the FrameView indicates whether or not we're in the destruc tor. 479 // Null-checking the FrameView indicates whether or not we're in the destruc tor.
480 RefPtrWillBeRawPtr<LocalFrame> protect(m_frame->view() ? m_frame.get() : nul lptr); 480 RefPtrWillBeRawPtr<LocalFrame> protect(m_frame->view() ? m_frame.get() : nul lptr);
481 481
482 m_progressTracker->finishedParsing(); 482 m_progressTracker->finishedParsing();
483 483
484 if (client()) 484 if (client())
485 client()->dispatchDidFinishDocumentLoad(m_documentLoader->isCommittedBut Empty()); 485 client()->dispatchDidFinishDocumentLoad(m_documentLoader ? m_documentLoa der->isCommittedButEmpty() : true);
486 486
487 checkCompleted(); 487 checkCompleted();
488 488
489 if (!m_frame->view()) 489 if (!m_frame->view())
490 return; // We are being destroyed by something checkCompleted called. 490 return; // We are being destroyed by something checkCompleted called.
491 491
492 // Check if the scrollbars are really needed for the content. 492 // Check if the scrollbars are really needed for the content.
493 // If not, remove them, relayout, and repaint. 493 // If not, remove them, relayout, and repaint.
494 m_frame->view()->restoreScrollbar(); 494 m_frame->view()->restoreScrollbar();
495 processFragment(m_frame->document()->url(), NavigationToDifferentDocument); 495 processFragment(m_frame->document()->url(), NavigationToDifferentDocument);
(...skipping 752 matching lines...) Expand 10 before | Expand all | Expand 10 after
1248 // Leaking scroll position to a cross-origin ancestor would permit the so-ca lled "framesniffing" attack. 1248 // Leaking scroll position to a cross-origin ancestor would permit the so-ca lled "framesniffing" attack.
1249 RefPtrWillBeRawPtr<Frame> boundaryFrame = url.hasFragmentIdentifier() ? m_fr ame->findUnsafeParentScrollPropagationBoundary() : 0; 1249 RefPtrWillBeRawPtr<Frame> boundaryFrame = url.hasFragmentIdentifier() ? m_fr ame->findUnsafeParentScrollPropagationBoundary() : 0;
1250 1250
1251 // FIXME: Handle RemoteFrames 1251 // FIXME: Handle RemoteFrames
1252 if (boundaryFrame && boundaryFrame->isLocalFrame()) 1252 if (boundaryFrame && boundaryFrame->isLocalFrame())
1253 toLocalFrame(boundaryFrame.get())->view()->setSafeToPropagateScrollToPar ent(false); 1253 toLocalFrame(boundaryFrame.get())->view()->setSafeToPropagateScrollToPar ent(false);
1254 1254
1255 // If scroll position is restored from history fragment then we should not o verride it unless 1255 // If scroll position is restored from history fragment then we should not o verride it unless
1256 // this is a same document reload. 1256 // this is a same document reload.
1257 bool shouldScrollToFragment = (loadStartType == NavigationWithinSameDocument && !isBackForwardLoadType(m_loadType)) 1257 bool shouldScrollToFragment = (loadStartType == NavigationWithinSameDocument && !isBackForwardLoadType(m_loadType))
1258 || !documentLoader()->initialScrollState().didRestoreFromHistory; 1258 || (documentLoader() && !documentLoader()->initialScrollState().didResto reFromHistory);
Nate Chapin 2015/08/17 19:20:35 Is this part actually necessary? I would have thou
sky 2015/08/17 20:32:36 My first fix was line 485. That fix got me here. S
1259 1259
1260 view->processUrlFragment(url, shouldScrollToFragment ? 1260 view->processUrlFragment(url, shouldScrollToFragment ?
1261 FrameView::UrlFragmentScroll : FrameView::UrlFragmentDontScroll); 1261 FrameView::UrlFragmentScroll : FrameView::UrlFragmentDontScroll);
1262 1262
1263 if (boundaryFrame && boundaryFrame->isLocalFrame()) 1263 if (boundaryFrame && boundaryFrame->isLocalFrame())
1264 toLocalFrame(boundaryFrame.get())->view()->setSafeToPropagateScrollToPar ent(true); 1264 toLocalFrame(boundaryFrame.get())->view()->setSafeToPropagateScrollToPar ent(true);
1265 } 1265 }
1266 1266
1267 bool FrameLoader::shouldClose() 1267 bool FrameLoader::shouldClose()
1268 { 1268 {
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
1514 // FIXME: We need a way to propagate insecure requests policy flags to 1514 // FIXME: We need a way to propagate insecure requests policy flags to
1515 // out-of-process frames. For now, we'll always use default behavior. 1515 // out-of-process frames. For now, we'll always use default behavior.
1516 if (!parentFrame->isLocalFrame()) 1516 if (!parentFrame->isLocalFrame())
1517 return nullptr; 1517 return nullptr;
1518 1518
1519 ASSERT(toLocalFrame(parentFrame)->document()); 1519 ASSERT(toLocalFrame(parentFrame)->document());
1520 return toLocalFrame(parentFrame)->document()->insecureNavigationsToUpgrade() ; 1520 return toLocalFrame(parentFrame)->document()->insecureNavigationsToUpgrade() ;
1521 } 1521 }
1522 1522
1523 } // namespace blink 1523 } // namespace blink
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698