| Index: Source/core/dom/DocumentInit.cpp
|
| diff --git a/Source/core/dom/DocumentInit.cpp b/Source/core/dom/DocumentInit.cpp
|
| index b28c3993c8856e926cd34773c16a486547fa04cb..c29bef990456e6a598ca6cbb7bc163856a0b6699 100644
|
| --- a/Source/core/dom/DocumentInit.cpp
|
| +++ b/Source/core/dom/DocumentInit.cpp
|
| @@ -66,7 +66,7 @@ bool DocumentInit::shouldSetURL() const
|
| bool DocumentInit::shouldTreatURLAsSrcdocDocument() const
|
| {
|
| ASSERT(m_frame);
|
| - return m_frame->loader()->shouldTreatURLAsSrcdocDocument(m_url);
|
| + return m_frame->loader().shouldTreatURLAsSrcdocDocument(m_url);
|
| }
|
|
|
| Frame* DocumentInit::frameForSecurityContext() const
|
| @@ -81,7 +81,7 @@ Frame* DocumentInit::frameForSecurityContext() const
|
| SandboxFlags DocumentInit::sandboxFlags() const
|
| {
|
| ASSERT(frameForSecurityContext());
|
| - return frameForSecurityContext()->loader()->effectiveSandboxFlags();
|
| + return frameForSecurityContext()->loader().effectiveSandboxFlags();
|
| }
|
|
|
| Settings* DocumentInit::settings() const
|
| @@ -97,7 +97,7 @@ Frame* DocumentInit::ownerFrame() const
|
|
|
| Frame* ownerFrame = m_frame->tree().parent();
|
| if (!ownerFrame)
|
| - ownerFrame = m_frame->loader()->opener();
|
| + ownerFrame = m_frame->loader().opener();
|
| return ownerFrame;
|
| }
|
|
|
|
|