Home | History | Annotate | Download | only in UIProcess

Lines Matching refs:WebFrameProxy

27 #include "WebFrameProxy.h"
44 WebFrameProxy::WebFrameProxy(WebPageProxy* page, uint64_t frameID)
58 WebFrameProxy::~WebFrameProxy()
63 void WebFrameProxy::disconnect()
78 bool WebFrameProxy::isMainFrame() const
86 void WebFrameProxy::stopLoading() const
97 bool WebFrameProxy::canProvideSource() const
102 bool WebFrameProxy::canShowMIMEType(const String& mimeType) const
119 bool WebFrameProxy::isDisplayingStandaloneImageDocument() const
124 bool WebFrameProxy::isDisplayingMarkupDocument() const
131 void WebFrameProxy::didStartProvisionalLoad(const String& url)
139 void WebFrameProxy::didReceiveServerRedirectForProvisionalLoad(const String& url)
145 void WebFrameProxy::didFailProvisionalLoad()
152 void WebFrameProxy::didCommitLoad(const String& contentType, const PlatformCertificateInfo& certificateInfo)
164 void WebFrameProxy::didFinishLoad()
171 void WebFrameProxy::didFailLoad()
179 void WebFrameProxy::didSameDocumentNavigation(const String& url)
184 void WebFrameProxy::didChangeTitle(const String& title)
189 void WebFrameProxy::appendChild(WebFrameProxy* child)
198 WebFrameProxy* oldLast = m_lastChild;
209 void WebFrameProxy::removeChild(WebFrameProxy* child)
213 WebFrameProxy*& newLocationForNext = m_firstChild == child ? m_firstChild : child->m_previousSibling->m_nextSibling;
214 WebFrameProxy*& newLocationForPrevious = m_lastChild == child ? m_lastChild : child->m_nextSibling->m_previousSibling;
221 bool WebFrameProxy::isDescendantOf(const WebFrameProxy* ancestor) const
229 for (const WebFrameProxy* frame = this; frame; frame = frame->m_parentFrame) {
237 void WebFrameProxy::dumpFrameTreeToSTDOUT(unsigned indent)
246 for (WebFrameProxy* child = m_firstChild; child; child = child->m_nextSibling)
250 void WebFrameProxy::didRemoveFromHierarchy()
256 PassRefPtr<ImmutableArray> WebFrameProxy::childFrames()
262 for (WebFrameProxy* child = m_firstChild; child; child = child->m_nextSibling)
268 void WebFrameProxy::receivedPolicyDecision(WebCore::PolicyAction action, uint64_t listenerID)
278 WebFramePolicyListenerProxy* WebFrameProxy::setUpPolicyListenerProxy(uint64_t listenerID)
286 WebFormSubmissionListenerProxy* WebFrameProxy::setUpFormSubmissionListenerProxy(uint64_t listenerID)
294 void WebFrameProxy::getWebArchive(PassRefPtr<DataCallback> callback)
304 void WebFrameProxy::getMainResourceData(PassRefPtr<DataCallback> callback)
314 void WebFrameProxy::getResourceData(WebURL* resourceURL, PassRefPtr<DataCallback> callback)