Home
last modified time | relevance | path

Searched refs:WebFrameProxy (Results 1 – 25 of 36) sorted by relevance

12

/external/webkit/Source/WebKit2/UIProcess/
DWebFrameProxy.cpp44 WebFrameProxy::WebFrameProxy(WebPageProxy* page, uint64_t frameID) in WebFrameProxy() function in WebKit::WebFrameProxy
58 WebFrameProxy::~WebFrameProxy() in ~WebFrameProxy()
63 void WebFrameProxy::disconnect() in disconnect()
78 bool WebFrameProxy::isMainFrame() const in isMainFrame()
86 void WebFrameProxy::stopLoading() const in stopLoading()
97 bool WebFrameProxy::canProvideSource() const in canProvideSource()
102 bool WebFrameProxy::canShowMIMEType(const String& mimeType) const in canShowMIMEType()
119 bool WebFrameProxy::isDisplayingStandaloneImageDocument() const in isDisplayingStandaloneImageDocument()
124 bool WebFrameProxy::isDisplayingMarkupDocument() const in isDisplayingMarkupDocument()
131 void WebFrameProxy::didStartProvisionalLoad(const String& url) in didStartProvisionalLoad()
[all …]
DWebLoaderClient.h46 class WebFrameProxy; variable
52 void didStartProvisionalLoadForFrame(WebPageProxy*, WebFrameProxy*, APIObject*);
53 …void didReceiveServerRedirectForProvisionalLoadForFrame(WebPageProxy*, WebFrameProxy*, APIObject*);
54 …void didFailProvisionalLoadWithErrorForFrame(WebPageProxy*, WebFrameProxy*, const WebCore::Resourc…
55 void didCommitLoadForFrame(WebPageProxy*, WebFrameProxy*, APIObject*);
56 void didFinishDocumentLoadForFrame(WebPageProxy*, WebFrameProxy*, APIObject*);
57 void didFinishLoadForFrame(WebPageProxy*, WebFrameProxy*, APIObject*);
58 …void didFailLoadWithErrorForFrame(WebPageProxy*, WebFrameProxy*, const WebCore::ResourceError&, AP…
59 …void didSameDocumentNavigationForFrame(WebPageProxy*, WebFrameProxy*, SameDocumentNavigationType, …
60 void didReceiveTitleForFrame(WebPageProxy*, const String&, WebFrameProxy*, APIObject*);
[all …]
DWebFrameProxy.h55 class WebFrameProxy : public APIObject {
59 static PassRefPtr<WebFrameProxy> create(WebPageProxy* page, uint64_t frameID) in create()
61 return adoptRef(new WebFrameProxy(page, frameID)); in create()
64 virtual ~WebFrameProxy();
75 WebFrameProxy* parentFrame() { return m_parentFrame; } in parentFrame()
76 WebFrameProxy* nextSibling() { return m_nextSibling; } in nextSibling()
77 WebFrameProxy* previousSibling() { return m_previousSibling; } in previousSibling()
78 WebFrameProxy* firstChild() { return m_firstChild; } in firstChild()
79 WebFrameProxy* lastChild() { return m_lastChild; } in lastChild()
124 void appendChild(WebFrameProxy*);
[all …]
DWebUIClient.h48 class WebFrameProxy; variable
63 void runJavaScriptAlert(WebPageProxy*, const String&, WebFrameProxy*);
64 bool runJavaScriptConfirm(WebPageProxy*, const String&, WebFrameProxy*);
65 String runJavaScriptPrompt(WebPageProxy*, const String&, const String&, WebFrameProxy*);
87 bool runBeforeUnloadConfirmPanel(WebPageProxy*, const String&, WebFrameProxy*);
92 …unsigned long long exceededDatabaseQuota(WebPageProxy*, WebFrameProxy*, WebSecurityOrigin*, const …
94 …bool runOpenPanel(WebPageProxy*, WebFrameProxy*, const WebOpenPanelParameters::Data&, WebOpenPanel…
95 …bool decidePolicyForGeolocationPermissionRequest(WebPageProxy*, WebFrameProxy*, WebSecurityOrigin*…
98 float headerHeight(WebPageProxy*, WebFrameProxy*);
99 float footerHeight(WebPageProxy*, WebFrameProxy*);
[all …]
DWebResourceLoadClient.h41 class WebFrameProxy; variable
46 …void didInitiateLoadForResource(WebPageProxy*, WebFrameProxy*, uint64_t resourceIdentifier, const …
47 …void didSendRequestForResource(WebPageProxy*, WebFrameProxy*, uint64_t resourceIdentifier, const W…
48 …void didReceiveResponseForResource(WebPageProxy*, WebFrameProxy*, uint64_t resourceIdentifier, con…
49 …void didReceiveContentLengthForResource(WebPageProxy*, WebFrameProxy*, uint64_t resourceIdentifier…
50 void didFinishLoadForResource(WebPageProxy*, WebFrameProxy*, uint64_t resourceIdentifier);
51 …void didFailLoadForResource(WebPageProxy*, WebFrameProxy*, uint64_t resourceIdentifier, const WebC…
DWebLoaderClient.cpp38 void WebLoaderClient::didStartProvisionalLoadForFrame(WebPageProxy* page, WebFrameProxy* frame, API… in didStartProvisionalLoadForFrame()
46 …idReceiveServerRedirectForProvisionalLoadForFrame(WebPageProxy* page, WebFrameProxy* frame, APIObj… in didReceiveServerRedirectForProvisionalLoadForFrame()
54 void WebLoaderClient::didFailProvisionalLoadWithErrorForFrame(WebPageProxy* page, WebFrameProxy* fr… in didFailProvisionalLoadWithErrorForFrame()
62 void WebLoaderClient::didCommitLoadForFrame(WebPageProxy* page, WebFrameProxy* frame, APIObject* us… in didCommitLoadForFrame()
70 void WebLoaderClient::didFinishDocumentLoadForFrame(WebPageProxy* page, WebFrameProxy* frame, APIOb… in didFinishDocumentLoadForFrame()
78 void WebLoaderClient::didFinishLoadForFrame(WebPageProxy* page, WebFrameProxy* frame, APIObject* us… in didFinishLoadForFrame()
86 void WebLoaderClient::didFailLoadWithErrorForFrame(WebPageProxy* page, WebFrameProxy* frame, const … in didFailLoadWithErrorForFrame()
94 void WebLoaderClient::didSameDocumentNavigationForFrame(WebPageProxy* page, WebFrameProxy* frame, S… in didSameDocumentNavigationForFrame()
102 …ent::didReceiveTitleForFrame(WebPageProxy* page, const String& title, WebFrameProxy* frame, APIObj… in didReceiveTitleForFrame()
110 void WebLoaderClient::didFirstLayoutForFrame(WebPageProxy* page, WebFrameProxy* frame, APIObject* u… in didFirstLayoutForFrame()
[all …]
DWebHistoryClient.h36 class WebFrameProxy; variable
42 …igateWithNavigationData(WebContext*, WebPageProxy*, const WebNavigationDataStore&, WebFrameProxy*);
43 …WebContext*, WebPageProxy*, const String& sourceURL, const String& destinationURL, WebFrameProxy*);
44 …WebContext*, WebPageProxy*, const String& sourceURL, const String& destinationURL, WebFrameProxy*);
45 …teHistoryTitle(WebContext*, WebPageProxy*, const String& title, const String& url, WebFrameProxy*);
DWebPolicyClient.h45 class WebFrameProxy; variable
50 …bool decidePolicyForNavigationAction(WebPageProxy*, WebFrameProxy*, WebCore::NavigationType, WebEv…
51 …bool decidePolicyForNewWindowAction(WebPageProxy*, WebFrameProxy*, WebCore::NavigationType, WebEve…
52 …bool decidePolicyForResponse(WebPageProxy*, WebFrameProxy*, const WebCore::ResourceResponse&, cons…
53 …void unableToImplementPolicy(WebPageProxy*, WebFrameProxy*, const WebCore::ResourceError&, APIObje…
DWebResourceLoadClient.cpp37 void WebResourceLoadClient::didInitiateLoadForResource(WebPageProxy* page, WebFrameProxy* frame, ui… in didInitiateLoadForResource()
46 void WebResourceLoadClient::didSendRequestForResource(WebPageProxy* page, WebFrameProxy* frame, uin… in didSendRequestForResource()
58 void WebResourceLoadClient::didReceiveResponseForResource(WebPageProxy* page, WebFrameProxy* frame,… in didReceiveResponseForResource()
67 void WebResourceLoadClient::didReceiveContentLengthForResource(WebPageProxy* page, WebFrameProxy* f… in didReceiveContentLengthForResource()
75 void WebResourceLoadClient::didFinishLoadForResource(WebPageProxy* page, WebFrameProxy* frame, uint… in didFinishLoadForResource()
83 void WebResourceLoadClient::didFailLoadForResource(WebPageProxy* page, WebFrameProxy* frame, uint64… in didFailLoadForResource()
DWebUIClient.cpp111 void WebUIClient::runJavaScriptAlert(WebPageProxy* page, const String& message, WebFrameProxy* fram… in runJavaScriptAlert()
119 bool WebUIClient::runJavaScriptConfirm(WebPageProxy* page, const String& message, WebFrameProxy* fr… in runJavaScriptConfirm()
127 …Prompt(WebPageProxy* page, const String& message, const String& defaultValue, WebFrameProxy* frame) in runJavaScriptPrompt()
255 …lient::runBeforeUnloadConfirmPanel(WebPageProxy* page, const String& message, WebFrameProxy* frame) in runBeforeUnloadConfirmPanel()
279 unsigned long long WebUIClient::exceededDatabaseQuota(WebPageProxy* page, WebFrameProxy* frame, Web… in exceededDatabaseQuota()
287 bool WebUIClient::runOpenPanel(WebPageProxy* page, WebFrameProxy* frame, const WebOpenPanelParamete… in runOpenPanel()
297 bool WebUIClient::decidePolicyForGeolocationPermissionRequest(WebPageProxy* page, WebFrameProxy* fr… in decidePolicyForGeolocationPermissionRequest()
306 float WebUIClient::headerHeight(WebPageProxy* page, WebFrameProxy* frame) in headerHeight()
314 float WebUIClient::footerHeight(WebPageProxy* page, WebFrameProxy* frame) in footerHeight()
322 void WebUIClient::drawHeader(WebPageProxy* page, WebFrameProxy* frame, const WebCore::FloatRect& re… in drawHeader()
[all …]
DWebFrameListenerProxy.h36 class WebFrameProxy; variable
46 WebFrameListenerProxy(WebFrameProxy*, uint64_t listenerID);
51 RefPtr<WebFrameProxy> m_frame;
DWebFormClient.h39 class WebFrameProxy; variable
44 …bool willSubmitForm(WebPageProxy*, WebFrameProxy*, WebFrameProxy*, const Vector<std::pair<String, …
DWebFormSubmissionListenerProxy.h33 class WebFrameProxy; variable
39 …static PassRefPtr<WebFormSubmissionListenerProxy> create(WebFrameProxy* frame, uint64_t listenerID) in create()
47 WebFormSubmissionListenerProxy(WebFrameProxy*, uint64_t listenerID);
DWebHistoryClient.cpp37 …ntext, WebPageProxy* page, const WebNavigationDataStore& navigationDataStore, WebFrameProxy* frame) in didNavigateWithNavigationData()
46 …t, WebPageProxy* page, const String& sourceURL, const String& destinationURL, WebFrameProxy* frame) in didPerformClientRedirect()
54 …t, WebPageProxy* page, const String& sourceURL, const String& destinationURL, WebFrameProxy* frame) in didPerformServerRedirect()
62 …Context* context, WebPageProxy* page, const String& title, const String& url, WebFrameProxy* frame) in didUpdateHistoryTitle()
DWebPageProxy.cpp918 void WebPageProxy::receivedPolicyDecision(PolicyAction action, WebFrameProxy* frame, uint64_t liste… in receivedPolicyDecision()
1205 void WebPageProxy::getSourceForFrame(WebFrameProxy* frame, PassRefPtr<StringCallback> prpCallback) in getSourceForFrame()
1246 void WebPageProxy::getMainResourceDataOfFrame(WebFrameProxy* frame, PassRefPtr<DataCallback> prpCal… in getMainResourceDataOfFrame()
1259 void WebPageProxy::getResourceDataFromFrame(WebFrameProxy* frame, WebURL* resourceURL, PassRefPtr<D… in getResourceDataFromFrame()
1272 void WebPageProxy::getWebArchiveOfFrame(WebFrameProxy* frame, PassRefPtr<DataCallback> prpCallback) in getWebArchiveOfFrame()
1376 m_mainFrame = WebFrameProxy::create(this, frameID); in didCreateMainFrame()
1386 WebFrameProxy* parentFrame = process()->webFrame(parentFrameID); in didCreateSubframe()
1392 RefPtr<WebFrameProxy> subFrame = WebFrameProxy::create(this, frameID); in didCreateSubframe()
1401 static bool isDisconnectedFrame(WebFrameProxy* frame) in isDisconnectedFrame()
1410 WebFrameProxy* subframe = process()->webFrame(frameID); in didSaveFrameToPageCache()
[all …]
DWebPolicyClient.cpp37 bool WebPolicyClient::decidePolicyForNavigationAction(WebPageProxy* page, WebFrameProxy* frame, Nav… in decidePolicyForNavigationAction()
48 bool WebPolicyClient::decidePolicyForNewWindowAction(WebPageProxy* page, WebFrameProxy* frame, Navi… in decidePolicyForNewWindowAction()
59 bool WebPolicyClient::decidePolicyForResponse(WebPageProxy* page, WebFrameProxy* frame, const Resou… in decidePolicyForResponse()
71 void WebPolicyClient::unableToImplementPolicy(WebPageProxy* page, WebFrameProxy* frame, const Resou… in unableToImplementPolicy()
DWebPageProxy.h167 WebFrameProxy* mainFrame() const { return m_mainFrame.get(); } in mainFrame()
168 WebFrameProxy* focusedFrame() const { return m_focusedFrame.get(); } in focusedFrame()
169 WebFrameProxy* frameSetLargestFrame() const { return m_frameSetLargestFrame.get(); } in frameSetLargestFrame()
369 void getMainResourceDataOfFrame(WebFrameProxy*, PassRefPtr<DataCallback>);
370 void getResourceDataFromFrame(WebFrameProxy*, WebURL*, PassRefPtr<DataCallback>);
373 void getSourceForFrame(WebFrameProxy*, PassRefPtr<StringCallback>);
374 void getWebArchiveOfFrame(WebFrameProxy*, PassRefPtr<DataCallback>);
378 float headerHeight(WebFrameProxy*);
379 float footerHeight(WebFrameProxy*);
380 void drawHeader(WebFrameProxy*, const WebCore::FloatRect&);
[all …]
DWebFramePolicyListenerProxy.h37 static PassRefPtr<WebFramePolicyListenerProxy> create(WebFrameProxy* frame, uint64_t listenerID) in create()
47 WebFramePolicyListenerProxy(WebFrameProxy*, uint64_t listenerID);
DWebFormClient.cpp36 bool WebFormClient::willSubmitForm(WebPageProxy* page, WebFrameProxy* frame, WebFrameProxy* sourceF… in willSubmitForm()
DWebContextUserMessageCoders.h62 WebFrameProxy* frame = static_cast<WebFrameProxy*>(m_root); in encode()
DWebProcessProxy.h57 typedef HashMap<uint64_t, RefPtr<WebFrameProxy> > WebFrameProxyMap;
92 WebFrameProxy* webFrame(uint64_t) const;
94 void frameCreated(uint64_t, WebFrameProxy*);
DWebProcessProxy.cpp121 Vector<RefPtr<WebFrameProxy> > frames; in disconnect()
362 WebFrameProxy* WebProcessProxy::webFrame(uint64_t frameID) const in webFrame()
372 void WebProcessProxy::frameCreated(uint64_t frameID, WebFrameProxy* frameProxy) in frameCreated()
389 Vector<RefPtr<WebFrameProxy> > frames; in disconnectFramesFromPage()
400 …for (HashMap<uint64_t, RefPtr<WebFrameProxy> >::const_iterator iter = m_frameMap.begin(); iter != … in frameCountInPage()
DWebFormSubmissionListenerProxy.cpp31 WebFormSubmissionListenerProxy::WebFormSubmissionListenerProxy(WebFrameProxy* frame, uint64_t liste… in WebFormSubmissionListenerProxy()
/external/webkit/Source/WebKit2/UIProcess/API/C/
DWKFrame.cpp40 return toAPI(WebFrameProxy::APIType); in WKFrameGetTypeID()
50 WebFrameProxy* frame = toImpl(frameRef); in WKFrameGetFrameLoadState()
52 case WebFrameProxy::LoadStateProvisional: in WKFrameGetFrameLoadState()
54 case WebFrameProxy::LoadStateCommitted: in WKFrameGetFrameLoadState()
56 case WebFrameProxy::LoadStateFinished: in WKFrameGetFrameLoadState()
/external/webkit/Source/WebKit2/UIProcess/API/mac/
DWKPrintingView.h32 class WebFrameProxy; variable
40 RefPtr<WebKit::WebFrameProxy> _webFrame;
60 - (id)initWithFrameProxy:(WebKit::WebFrameProxy*)frame view:(NSView *)wkView;

12