| Index: Source/core/frame/Frame.cpp
|
| diff --git a/Source/core/frame/Frame.cpp b/Source/core/frame/Frame.cpp
|
| index c7c72783618fc1324f983b523a6ebb7e2a4f9b46..fed9a606825fb0eae2f79540c668884d9836ba7d 100644
|
| --- a/Source/core/frame/Frame.cpp
|
| +++ b/Source/core/frame/Frame.cpp
|
| @@ -144,7 +144,7 @@ PassRefPtr<Frame> Frame::create(Page* page, HTMLFrameOwnerElement* ownerElement,
|
| Frame::~Frame()
|
| {
|
| setView(0);
|
| - loader()->clear(ClearScriptObjects | ClearWindowObject);
|
| + loader().clear(ClearScriptObjects | ClearWindowObject);
|
|
|
| // FIXME: We should not be doing all this work inside the destructor
|
|
|
| @@ -323,7 +323,7 @@ void Frame::willDetachPage()
|
| RELEASE_ASSERT(!m_view || !m_view->isInLayout());
|
|
|
| if (Frame* parent = tree().parent())
|
| - parent->loader()->checkLoadComplete();
|
| + parent->loader().checkLoadComplete();
|
|
|
| HashSet<FrameDestructionObserver*>::iterator stop = m_destructionObservers.end();
|
| for (HashSet<FrameDestructionObserver*>::iterator it = m_destructionObservers.begin(); it != stop; ++it)
|
|
|