Index: Source/core/frame/RemoteFrame.cpp |
diff --git a/Source/core/frame/RemoteFrame.cpp b/Source/core/frame/RemoteFrame.cpp |
index ccb2eec158ad2e15f01c5f8c2d5b112cc85e5e2a..cde4b2c8623e530e1db70262c23eed7c597734f4 100644 |
--- a/Source/core/frame/RemoteFrame.cpp |
+++ b/Source/core/frame/RemoteFrame.cpp |
@@ -70,18 +70,6 @@ RemoteSecurityContext* RemoteFrame::securityContext() const |
return m_securityContext.get(); |
} |
-bool RemoteFrame::checkLoadComplete() |
-{ |
- if (isLoading()) |
- return false; |
- |
- bool allChildrenAreDoneLoading = true; |
- for (RefPtrWillBeRawPtr<Frame> child = tree().firstChild(); child; child = child->tree().nextSibling()) { |
- allChildrenAreDoneLoading &= child->checkLoadComplete(); |
- } |
- return allChildrenAreDoneLoading; |
-} |
- |
void RemoteFrame::forwardInputEvent(Event* event) |
{ |
remoteFrameClient()->forwardInputEvent(event); |