| Index: Source/core/html/HTMLAppletElement.cpp
|
| diff --git a/Source/core/html/HTMLAppletElement.cpp b/Source/core/html/HTMLAppletElement.cpp
|
| index 3664ca1a500d39bc33d638f5b4abc859880bee1f..ce2ef53ac2de9d2510398747703179d788df9684 100644
|
| --- a/Source/core/html/HTMLAppletElement.cpp
|
| +++ b/Source/core/html/HTMLAppletElement.cpp
|
| @@ -168,15 +168,15 @@ void HTMLAppletElement::updateWidget(PluginCreationOption)
|
| }
|
|
|
| RefPtr<Widget> widget;
|
| - if (frame->loader()->allowPlugins(AboutToInstantiatePlugin))
|
| - widget = frame->loader()->client()->createJavaAppletWidget(roundedIntSize(LayoutSize(contentWidth, contentHeight)), this, baseURL, paramNames, paramValues);
|
| + if (frame->loader().allowPlugins(AboutToInstantiatePlugin))
|
| + widget = frame->loader().client()->createJavaAppletWidget(roundedIntSize(LayoutSize(contentWidth, contentHeight)), this, baseURL, paramNames, paramValues);
|
|
|
| if (!widget) {
|
| if (!renderer->showsUnavailablePluginIndicator())
|
| renderer->setPluginUnavailabilityReason(RenderEmbeddedObject::PluginMissing);
|
| return;
|
| }
|
| - frame->loader()->setContainsPlugins();
|
| + frame->loader().setContainsPlugins();
|
| renderer->setWidget(widget);
|
| }
|
|
|
|
|