| Index: Source/core/layout/LayoutFullScreen.cpp
|
| diff --git a/Source/core/layout/LayoutFullScreen.cpp b/Source/core/layout/LayoutFullScreen.cpp
|
| index 0cbf8fbc0f98f6d785004448724ad3f118c8ac46..32fe1fb189d26799dd582252d25f12ae10412a03 100644
|
| --- a/Source/core/layout/LayoutFullScreen.cpp
|
| +++ b/Source/core/layout/LayoutFullScreen.cpp
|
| @@ -90,7 +90,7 @@ void LayoutFullScreen::willBeDestroyed()
|
|
|
| void LayoutFullScreen::updateStyle()
|
| {
|
| - RefPtr<LayoutStyle> fullscreenStyle = LayoutStyle::create();
|
| + RefPtr<ComputedStyle> fullscreenStyle = ComputedStyle::create();
|
|
|
| // Create a stacking context:
|
| fullscreenStyle->setZIndex(INT_MAX);
|
| @@ -184,7 +184,7 @@ void LayoutFullScreen::setPlaceholder(LayoutBlock* placeholder)
|
| m_placeholder = placeholder;
|
| }
|
|
|
| -void LayoutFullScreen::createPlaceholder(PassRefPtr<LayoutStyle> style, const LayoutRect& frameRect)
|
| +void LayoutFullScreen::createPlaceholder(PassRefPtr<ComputedStyle> style, const LayoutRect& frameRect)
|
| {
|
| if (style->width().isAuto())
|
| style->setWidth(Length(frameRect.width(), Fixed));
|
|
|