| Index: Source/core/html/HTMLAppletElement.cpp
|
| diff --git a/Source/core/html/HTMLAppletElement.cpp b/Source/core/html/HTMLAppletElement.cpp
|
| index e2836370a2ac1f1b54756a1d90197431ab509a87..b795aa0afc879730af37732742cca7081d8ec915 100644
|
| --- a/Source/core/html/HTMLAppletElement.cpp
|
| +++ b/Source/core/html/HTMLAppletElement.cpp
|
| @@ -120,7 +120,7 @@ void HTMLAppletElement::updateWidgetInternal()
|
| if (!isFinishedParsingChildren())
|
| return;
|
|
|
| - LayoutEmbeddedObject* renderer = layoutEmbeddedObject();
|
| + LayoutEmbeddedObject* layoutObject = layoutEmbeddedObject();
|
|
|
| LocalFrame* frame = document().frame();
|
| ASSERT(frame);
|
| @@ -197,8 +197,8 @@ void HTMLAppletElement::updateWidgetInternal()
|
| }
|
|
|
| if (!placeholder && !widget) {
|
| - if (!renderer->showsUnavailablePluginIndicator())
|
| - renderer->setPluginUnavailabilityReason(LayoutEmbeddedObject::PluginMissing);
|
| + if (!layoutObject->showsUnavailablePluginIndicator())
|
| + layoutObject->setPluginUnavailabilityReason(LayoutEmbeddedObject::PluginMissing);
|
| setPlaceholder(nullptr);
|
| } else if (placeholder) {
|
| setPlaceholder(placeholder.release());
|
|
|