Home | History | Annotate | Download | only in UIProcess

Lines Matching refs:frameID

947     process()->send(Messages::WebPage::DidReceivePolicyDecision(frame->frameID(), listenerID, action, downloadID), m_pageID);
1216 process()->send(Messages::WebPage::GetSourceForFrame(frame->frameID(), callbackID), m_pageID);
1256 process()->send(Messages::WebPage::GetMainResourceDataOfFrame(frame->frameID(), callbackID), m_pageID);
1269 process()->send(Messages::WebPage::GetResourceDataFromFrame(frame->frameID(), resourceURL->string(), callbackID), m_pageID);
1282 process()->send(Messages::WebPage::GetWebArchiveOfFrame(frame->frameID(), callbackID), m_pageID);
1371 void WebPageProxy::didCreateMainFrame(uint64_t frameID)
1374 MESSAGE_CHECK(process()->canCreateFrame(frameID));
1376 m_mainFrame = WebFrameProxy::create(this, frameID);
1379 process()->frameCreated(frameID, m_mainFrame.get());
1382 void WebPageProxy::didCreateSubframe(uint64_t frameID, uint64_t parentFrameID)
1390 MESSAGE_CHECK(process()->canCreateFrame(frameID));
1392 RefPtr<WebFrameProxy> subFrame = WebFrameProxy::create(this, frameID);
1395 process()->frameCreated(frameID, subFrame.get());
1406 void WebPageProxy::didSaveFrameToPageCache(uint64_t frameID)
1410 WebFrameProxy* subframe = process()->webFrame(frameID);
1421 void WebPageProxy::didRestoreFrameFromPageCache(uint64_t frameID, uint64_t parentFrameID)
1425 WebFrameProxy* subframe = process()->webFrame(frameID);
1472 void WebPageProxy::didStartProvisionalLoadForFrame(uint64_t frameID, const String& url, const String& unreachableURL, CoreIPC::ArgumentDecoder* arguments)
1481 WebFrameProxy* frame = process()->webFrame(frameID);
1490 void WebPageProxy::didReceiveServerRedirectForProvisionalLoadForFrame(uint64_t frameID, const String& url, CoreIPC::ArgumentDecoder* arguments)
1497 WebFrameProxy* frame = process()->webFrame(frameID);
1505 void WebPageProxy::didFailProvisionalLoadForFrame(uint64_t frameID, const ResourceError& error, CoreIPC::ArgumentDecoder* arguments)
1512 WebFrameProxy* frame = process()->webFrame(frameID);
1533 void WebPageProxy::didCommitLoadForFrame(uint64_t frameID, const String& mimeType, bool frameHasCustomRepresentation, const PlatformCertificateInfo& certificateInfo, CoreIPC::ArgumentDecoder* arguments)
1545 WebFrameProxy* frame = process()->webFrame(frameID);
1560 frameID, CoreIPC::ArgumentDecoder* arguments)
1567 WebFrameProxy* frame = process()->webFrame(frameID);
1573 void WebPageProxy::didFinishLoadForFrame(uint64_t frameID, CoreIPC::ArgumentDecoder* arguments)
1580 WebFrameProxy* frame = process()->webFrame(frameID);
1588 void WebPageProxy::didFailLoadForFrame(uint64_t frameID, const ResourceError& error, CoreIPC::ArgumentDecoder* arguments)
1595 WebFrameProxy* frame = process()->webFrame(frameID);
1605 void WebPageProxy::didSameDocumentNavigationForFrame(uint64_t frameID, uint32_t opaqueSameDocumentNavigationType, const String& url, CoreIPC::ArgumentDecoder* arguments)
1612 WebFrameProxy* frame = process()->webFrame(frameID);
1620 void WebPageProxy::didReceiveTitleForFrame(uint64_t frameID, const String& title, CoreIPC::ArgumentDecoder* arguments)
1627 WebFrameProxy* frame = process()->webFrame(frameID);
1635 void WebPageProxy::didFirstLayoutForFrame(uint64_t frameID, CoreIPC::ArgumentDecoder* arguments)
1642 WebFrameProxy* frame = process()->webFrame(frameID);
1648 void WebPageProxy::didFirstVisuallyNonEmptyLayoutForFrame(uint64_t frameID, CoreIPC::ArgumentDecoder* arguments)
1655 WebFrameProxy* frame = process()->webFrame(frameID);
1661 void WebPageProxy::didRemoveFrameFromHierarchy(uint64_t frameID, CoreIPC::ArgumentDecoder* arguments)
1668 WebFrameProxy* frame = process()->webFrame(frameID);
1676 void WebPageProxy::didDisplayInsecureContentForFrame(uint64_t frameID, CoreIPC::ArgumentDecoder* arguments)
1683 WebFrameProxy* frame = process()->webFrame(frameID);
1689 void WebPageProxy::didRunInsecureContentForFrame(uint64_t frameID, CoreIPC::ArgumentDecoder* arguments)
1696 WebFrameProxy* frame = process()->webFrame(frameID);
1702 void WebPageProxy::frameDidBecomeFrameSet(uint64_t frameID, bool value)
1704 WebFrameProxy* frame = process()->webFrame(frameID);
1713 void WebPageProxy::decidePolicyForNavigationAction(uint64_t frameID, uint32_t opaqueNavigationType, uint32_t opaqueModifiers, int32_t opaqueMouseButton, const ResourceRequest& request, uint64_t listenerID, CoreIPC::ArgumentDecoder* arguments, bool& receivedPolicyAction, uint64_t& policyAction, uint64_t& downloadID)
1723 WebFrameProxy* frame = process()->webFrame(frameID);
1750 void WebPageProxy::decidePolicyForNewWindowAction(uint64_t frameID, uint32_t opaqueNavigationType, uint32_t opaqueModifiers, int32_t opaqueMouseButton, const ResourceRequest& request, const String& frameName, uint64_t listenerID, CoreIPC::ArgumentDecoder* arguments)
1757 WebFrameProxy* frame = process()->webFrame(frameID);
1769 void WebPageProxy::decidePolicyForResponse(uint64_t frameID, const ResourceResponse& response, const ResourceRequest& request, uint64_t listenerID, CoreIPC::ArgumentDecoder* arguments, bool& receivedPolicyAction, uint64_t& policyAction, uint64_t& downloadID)
1776 WebFrameProxy* frame = process()->webFrame(frameID);
1799 void WebPageProxy::unableToImplementPolicy(uint64_t frameID, const WebCore::ResourceError& error, CoreIPC::ArgumentDecoder* arguments)
1806 WebFrameProxy* frame = process()->webFrame(frameID);
1814 void WebPageProxy::willSubmitForm(uint64_t frameID, uint64_t sourceFrameID, const StringPairVector& textFieldValues, uint64_t listenerID, CoreIPC::ArgumentDecoder* arguments)
1821 WebFrameProxy* frame = process()->webFrame(frameID);
1834 void WebPageProxy::didInitiateLoadForResource(uint64_t frameID, uint64_t resourceIdentifier, const ResourceRequest& request, bool pageIsProvisionallyLoading)
1836 WebFrameProxy* frame = process()->webFrame(frameID);
1842 void WebPageProxy::didSendRequestForResource(uint64_t frameID, uint64_t resourceIdentifier, const ResourceRequest& request, const ResourceResponse& redirectResponse)
1844 WebFrameProxy* frame = process()->webFrame(frameID);
1850 void WebPageProxy::didReceiveResponseForResource(uint64_t frameID, uint64_t resourceIdentifier, const ResourceResponse& response)
1852 WebFrameProxy* frame = process()->webFrame(frameID);
1858 void WebPageProxy::didReceiveContentLengthForResource(uint64_t frameID, uint64_t resourceIdentifier, uint64_t contentLength)
1860 WebFrameProxy* frame = process()->webFrame(frameID);
1866 void WebPageProxy::didFinishLoadForResource(uint64_t frameID, uint64_t resourceIdentifier)
1868 WebFrameProxy* frame = process()->webFrame(frameID);
1874 void WebPageProxy::didFailLoadForResource(uint64_t frameID, uint64_t resourceIdentifier, const ResourceError& error)
1876 WebFrameProxy* frame = process()->webFrame(frameID);
1904 void WebPageProxy::runJavaScriptAlert(uint64_t frameID, const String& message)
1906 WebFrameProxy* frame = process()->webFrame(frameID);
1915 void WebPageProxy::runJavaScriptConfirm(uint64_t frameID, const String& message, bool& result)
1917 WebFrameProxy* frame = process()->webFrame(frameID);
1926 void WebPageProxy::runJavaScriptPrompt(uint64_t frameID, const String& message, const String& defaultValue, String& result)
1928 WebFrameProxy* frame = process()->webFrame(frameID);
2014 void WebPageProxy::runBeforeUnloadConfirmPanel(const String& message, uint64_t frameID, bool& shouldClose)
2016 WebFrameProxy* frame = process()->webFrame(frameID);
2039 void WebPageProxy::runOpenPanel(uint64_t frameID, const WebOpenPanelParameters::Data& data)
2046 WebFrameProxy* frame = process()->webFrame(frameID);
2055 void WebPageProxy::printFrame(uint64_t frameID)
2060 WebFrameProxy* frame = process()->webFrame(frameID);
2689 void WebPageProxy::focusedFrameChanged(uint64_t frameID)
2691 if (!frameID) {
2696 WebFrameProxy* frame = process()->webFrame(frameID);
2702 void WebPageProxy::frameSetLargestFrameChanged(uint64_t frameID)
2704 if (!frameID) {
2709 WebFrameProxy* frame = process()->webFrame(frameID);
2851 void WebPageProxy::canAuthenticateAgainstProtectionSpaceInFrame(uint64_t frameID, const WebCore::ProtectionSpace& coreProtectionSpace, bool& canAuthenticate)
2853 WebFrameProxy* frame = process()->webFrame(frameID);
2861 void WebPageProxy::didReceiveAuthenticationChallenge(uint64_t frameID, const WebCore::AuthenticationChallenge& coreChallenge, uint64_t challengeID)
2863 WebFrameProxy* frame = process()->webFrame(frameID);
2871 void WebPageProxy::exceededDatabaseQuota(uint64_t frameID, const String& originIdentifier, const String& databaseName, const String& displayName, uint64_t currentQuota, uint64_t currentUsage, uint64_t expectedUsage, uint64_t& newQuota)
2873 WebFrameProxy* frame = process()->webFrame(frameID);
2881 void WebPageProxy::requestGeolocationPermissionForFrame(uint64_t geolocationID, uint64_t frameID, String originIdentifier)
2883 WebFrameProxy* frame = process()->webFrame(frameID);
2948 process()->send(Messages::WebPage::BeginPrinting(frame->frameID(), printInfo), m_pageID, m_isPerformingDOMPrintOperation ? CoreIPC::DispatchMessageEvenWhenWaitingForSyncReply : 0);
2971 process()->send(Messages::WebPage::ComputePagesForPrinting(frame->frameID(), printInfo, callbackID), m_pageID, m_isPerformingDOMPrintOperation ? CoreIPC::DispatchMessageEvenWhenWaitingForSyncReply : 0);
2985 process()->send(Messages::WebPage::DrawRectToPDF(frame->frameID(), rect, callbackID), m_pageID, m_isPerformingDOMPrintOperation ? CoreIPC::DispatchMessageEvenWhenWaitingForSyncReply : 0);
2998 process()->send(Messages::WebPage::DrawPagesToPDF(frame->frameID(), first, count, callbackID), m_pageID, m_isPerformingDOMPrintOperation ? CoreIPC::DispatchMessageEvenWhenWaitingForSyncReply : 0);