| Index: Source/web/WebHelperPluginImpl.cpp
|
| diff --git a/Source/web/WebHelperPluginImpl.cpp b/Source/web/WebHelperPluginImpl.cpp
|
| index 94f28bb0a5b0348794bd0fa7f9e9454a4338e6f2..4bc0be943955e87b0e6853fd4e4113fcfbb9f2fc 100644
|
| --- a/Source/web/WebHelperPluginImpl.cpp
|
| +++ b/Source/web/WebHelperPluginImpl.cpp
|
| @@ -157,7 +157,7 @@ void WebHelperPluginImpl::closeHelperPlugin()
|
| {
|
| if (m_page) {
|
| m_page->clearPageGroup();
|
| - m_page->mainFrame()->loader()->stopAllLoaders();
|
| + m_page->mainFrame()->loader().stopAllLoaders();
|
| }
|
|
|
| // We must destroy the page now in case the host page is being destroyed, in
|
| @@ -223,11 +223,11 @@ bool WebHelperPluginImpl::initializePage(const String& pluginType, const WebDocu
|
| // The page's main frame was set in initializeFrame() as a result of the above call.
|
| Frame* frame = m_page->mainFrame();
|
| ASSERT(frame);
|
| - frame->loader()->forceSandboxFlags(SandboxAll & ~SandboxPlugins);
|
| + frame->loader().forceSandboxFlags(SandboxAll & ~SandboxPlugins);
|
| frame->setView(FrameView::create(frame));
|
| // No need to set a size or make it not transparent.
|
|
|
| - writeDocument(pluginType, hostDocument, frame->loader()->activeDocumentLoader());
|
| + writeDocument(pluginType, hostDocument, frame->loader().activeDocumentLoader());
|
|
|
| return true;
|
| }
|
| @@ -238,7 +238,7 @@ void WebHelperPluginImpl::destroyPage()
|
| return;
|
|
|
| if (m_page->mainFrame())
|
| - m_page->mainFrame()->loader()->frameDetached();
|
| + m_page->mainFrame()->loader().frameDetached();
|
|
|
| m_page.clear();
|
| }
|
|
|