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

Unified Diff: Source/web/WebPageSerializer.cpp

Issue 219903002: Revert 170347 "Convert HTMLFrameOwnerElement and FocusController..." (Closed) Base URL: svn://svn.chromium.org/blink/branches/chromium/1917/
Patch Set: Created 6 years, 9 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/web/WebFrameImpl.cpp ('k') | Source/web/WebViewImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebPageSerializer.cpp
===================================================================
--- Source/web/WebPageSerializer.cpp (revision 170478)
+++ Source/web/WebPageSerializer.cpp (working copy)
@@ -86,10 +86,9 @@
ASSERT(element);
// If the node is a frame, we'll process it later in retrieveResourcesForFrame.
if (isHTMLFrameElementBase(*element) || isHTMLObjectElement(*element) || isHTMLEmbedElement(*element)) {
- Frame* frame = toHTMLFrameOwnerElement(element)->contentFrame();
- if (frame && frame->isLocalFrame()) {
- if (!visitedFrames->contains(toLocalFrame(frame)))
- framesToVisit->append(toLocalFrame(frame));
+ if (LocalFrame* frame = toHTMLFrameOwnerElement(element)->contentFrame()) {
+ if (!visitedFrames->contains(frame))
+ framesToVisit->append(frame);
return;
}
}
« no previous file with comments | « Source/web/WebFrameImpl.cpp ('k') | Source/web/WebViewImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698