| Index: Source/core/html/HTMLIFrameElement.cpp
|
| diff --git a/Source/core/html/HTMLIFrameElement.cpp b/Source/core/html/HTMLIFrameElement.cpp
|
| index 2e752d7493cae9b854a1a7336ba2af78f053797e..f5ea4ff0e5bda2977040d7208b71b3925d4ebb0b 100644
|
| --- a/Source/core/html/HTMLIFrameElement.cpp
|
| +++ b/Source/core/html/HTMLIFrameElement.cpp
|
| @@ -124,12 +124,12 @@ void HTMLIFrameElement::parseAttribute(const QualifiedName& name, const AtomicSt
|
| }
|
| }
|
|
|
| -bool HTMLIFrameElement::layoutObjectIsNeeded(const LayoutStyle& style)
|
| +bool HTMLIFrameElement::layoutObjectIsNeeded(const ComputedStyle& style)
|
| {
|
| return isURLAllowed() && HTMLElement::layoutObjectIsNeeded(style);
|
| }
|
|
|
| -LayoutObject* HTMLIFrameElement::createLayoutObject(const LayoutStyle&)
|
| +LayoutObject* HTMLIFrameElement::createLayoutObject(const ComputedStyle&)
|
| {
|
| return new LayoutIFrame(this);
|
| }
|
|
|