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

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

Issue 899163003: Move rendering/RenderObject to layout/LayoutObject. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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/HTMLIFrameElement.h ('k') | Source/core/html/HTMLImageElement.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) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2000 Simon Hausmann (hausmann@kde.org) 4 * (C) 2000 Simon Hausmann (hausmann@kde.org)
5 * (C) 2001 Dirk Mueller (mueller@kde.org) 5 * (C) 2001 Dirk Mueller (mueller@kde.org)
6 * Copyright (C) 2004, 2006, 2008, 2009 Apple Inc. All rights reserved. 6 * Copyright (C) 2004, 2006, 2008, 2009 Apple Inc. All rights reserved.
7 * Copyright (C) 2009 Ericsson AB. All rights reserved. 7 * Copyright (C) 2009 Ericsson AB. All rights reserved.
8 * 8 *
9 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public 10 * modify it under the terms of the GNU Library General Public
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 } else { 105 } else {
106 HTMLFrameElementBase::parseAttribute(name, value); 106 HTMLFrameElementBase::parseAttribute(name, value);
107 } 107 }
108 } 108 }
109 109
110 bool HTMLIFrameElement::rendererIsNeeded(const RenderStyle& style) 110 bool HTMLIFrameElement::rendererIsNeeded(const RenderStyle& style)
111 { 111 {
112 return isURLAllowed() && HTMLElement::rendererIsNeeded(style); 112 return isURLAllowed() && HTMLElement::rendererIsNeeded(style);
113 } 113 }
114 114
115 RenderObject* HTMLIFrameElement::createRenderer(const RenderStyle&) 115 LayoutObject* HTMLIFrameElement::createRenderer(const RenderStyle&)
116 { 116 {
117 return new RenderIFrame(this); 117 return new RenderIFrame(this);
118 } 118 }
119 119
120 Node::InsertionNotificationRequest HTMLIFrameElement::insertedInto(ContainerNode * insertionPoint) 120 Node::InsertionNotificationRequest HTMLIFrameElement::insertedInto(ContainerNode * insertionPoint)
121 { 121 {
122 if (insertionPoint->inDocument()) { 122 if (insertionPoint->inDocument()) {
123 V8DOMActivityLogger* activityLogger = V8DOMActivityLogger::currentActivi tyLoggerIfIsolatedWorld(); 123 V8DOMActivityLogger* activityLogger = V8DOMActivityLogger::currentActivi tyLoggerIfIsolatedWorld();
124 if (activityLogger) { 124 if (activityLogger) {
125 Vector<String> argv; 125 Vector<String> argv;
(...skipping 14 matching lines...) Expand all
140 if (insertionPoint->inDocument() && document().isHTMLDocument() && !insertio nPoint->isInShadowTree()) 140 if (insertionPoint->inDocument() && document().isHTMLDocument() && !insertio nPoint->isInShadowTree())
141 toHTMLDocument(document()).removeExtraNamedItem(m_name); 141 toHTMLDocument(document()).removeExtraNamedItem(m_name);
142 } 142 }
143 143
144 bool HTMLIFrameElement::isInteractiveContent() const 144 bool HTMLIFrameElement::isInteractiveContent() const
145 { 145 {
146 return true; 146 return true;
147 } 147 }
148 148
149 } 149 }
OLDNEW
« no previous file with comments | « Source/core/html/HTMLIFrameElement.h ('k') | Source/core/html/HTMLImageElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698