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

Side by Side Diff: Source/core/html/HTMLFrameOwnerElement.cpp

Issue 23886003: Have HTMLElements / SVGElements constructors take a Document reference in argument (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Another Android build fix Created 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/html/HTMLFrameOwnerElement.h ('k') | Source/core/html/HTMLFrameSetElement.h » ('j') | 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, 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved.
3 * 3 *
4 * This library is free software; you can redistribute it and/or 4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public 5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either 6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version. 7 * version 2 of the License, or (at your option) any later version.
8 * 8 *
9 * This library is distributed in the hope that it will be useful, 9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 16 matching lines...) Expand all
27 #include "core/loader/FrameLoaderClient.h" 27 #include "core/loader/FrameLoaderClient.h"
28 #include "core/page/Frame.h" 28 #include "core/page/Frame.h"
29 #include "core/page/FrameView.h" 29 #include "core/page/FrameView.h"
30 #include "core/rendering/RenderPart.h" 30 #include "core/rendering/RenderPart.h"
31 #include "core/svg/SVGDocument.h" 31 #include "core/svg/SVGDocument.h"
32 #include "weborigin/SecurityOrigin.h" 32 #include "weborigin/SecurityOrigin.h"
33 #include "weborigin/SecurityPolicy.h" 33 #include "weborigin/SecurityPolicy.h"
34 34
35 namespace WebCore { 35 namespace WebCore {
36 36
37 HTMLFrameOwnerElement::HTMLFrameOwnerElement(const QualifiedName& tagName, Docum ent* document) 37 HTMLFrameOwnerElement::HTMLFrameOwnerElement(const QualifiedName& tagName, Docum ent& document)
38 : HTMLElement(tagName, document) 38 : HTMLElement(tagName, document)
39 , m_contentFrame(0) 39 , m_contentFrame(0)
40 , m_sandboxFlags(SandboxNone) 40 , m_sandboxFlags(SandboxNone)
41 { 41 {
42 } 42 }
43 43
44 RenderPart* HTMLFrameOwnerElement::renderPart() const 44 RenderPart* HTMLFrameOwnerElement::renderPart() const
45 { 45 {
46 // HTMLObjectElement and HTMLEmbedElement may return arbitrary renderers 46 // HTMLObjectElement and HTMLEmbedElement may return arbitrary renderers
47 // when using fallback content. 47 // when using fallback content.
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 // FIXME: In this case the Frame will have finished loading before 169 // FIXME: In this case the Frame will have finished loading before
170 // it's being added to the child list. It would be a good idea to 170 // it's being added to the child list. It would be a good idea to
171 // create the child first, then invoke the loader separately. 171 // create the child first, then invoke the loader separately.
172 if (childFrame->loader()->state() == FrameStateComplete && !childFrame->load er()->policyDocumentLoader()) 172 if (childFrame->loader()->state() == FrameStateComplete && !childFrame->load er()->policyDocumentLoader())
173 childFrame->loader()->checkCompleted(); 173 childFrame->loader()->checkCompleted();
174 return true; 174 return true;
175 } 175 }
176 176
177 177
178 } // namespace WebCore 178 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/html/HTMLFrameOwnerElement.h ('k') | Source/core/html/HTMLFrameSetElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698