Searched refs:WebFrameProxy (Results 1 - 25 of 32) sorted by relevance

12

/external/webkit/Source/WebKit2/UIProcess/
H A DWebLoaderClient.h46 class WebFrameProxy;
52 void didStartProvisionalLoadForFrame(WebPageProxy*, WebFrameProxy*, APIObject*);
53 void didReceiveServerRedirectForProvisionalLoadForFrame(WebPageProxy*, WebFrameProxy*, APIObject*);
54 void didFailProvisionalLoadWithErrorForFrame(WebPageProxy*, WebFrameProxy*, const WebCore::ResourceError&, APIObject*);
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&, APIObject*);
59 void didSameDocumentNavigationForFrame(WebPageProxy*, WebFrameProxy*, SameDocumentNavigationType, APIObject*);
60 void didReceiveTitleForFrame(WebPageProxy*, const String&, WebFrameProxy*, APIObjec
[all...]
H A DWebHistoryClient.h36 class WebFrameProxy;
42 void didNavigateWithNavigationData(WebContext*, WebPageProxy*, const WebNavigationDataStore&, WebFrameProxy*);
43 void didPerformClientRedirect(WebContext*, WebPageProxy*, const String& sourceURL, const String& destinationURL, WebFrameProxy*);
44 void didPerformServerRedirect(WebContext*, WebPageProxy*, const String& sourceURL, const String& destinationURL, WebFrameProxy*);
45 void didUpdateHistoryTitle(WebContext*, WebPageProxy*, const String& title, const String& url, WebFrameProxy*);
H A DWebResourceLoadClient.h41 class WebFrameProxy;
46 void didInitiateLoadForResource(WebPageProxy*, WebFrameProxy*, uint64_t resourceIdentifier, const WebCore::ResourceRequest&, bool pageIsProvisionallyLoading);
47 void didSendRequestForResource(WebPageProxy*, WebFrameProxy*, uint64_t resourceIdentifier, const WebCore::ResourceRequest&, const WebCore::ResourceResponse&);
48 void didReceiveResponseForResource(WebPageProxy*, WebFrameProxy*, uint64_t resourceIdentifier, const WebCore::ResourceResponse&);
49 void didReceiveContentLengthForResource(WebPageProxy*, WebFrameProxy*, uint64_t resourceIdentifier, uint64_t contentLength);
50 void didFinishLoadForResource(WebPageProxy*, WebFrameProxy*, uint64_t resourceIdentifier);
51 void didFailLoadForResource(WebPageProxy*, WebFrameProxy*, uint64_t resourceIdentifier, const WebCore::ResourceError&);
H A DWebFrameProxy.h55 class WebFrameProxy : public APIObject { class in namespace:WebKit
59 static PassRefPtr<WebFrameProxy> create(WebPageProxy* page, uint64_t frameID)
61 return adoptRef(new WebFrameProxy(page, frameID));
64 virtual ~WebFrameProxy();
75 WebFrameProxy* parentFrame() { return m_parentFrame; }
76 WebFrameProxy* nextSibling() { return m_nextSibling; }
77 WebFrameProxy* previousSibling() { return m_previousSibling; }
78 WebFrameProxy* firstChild() { return m_firstChild; }
79 WebFrameProxy* lastChild() { return m_lastChild; }
124 void appendChild(WebFrameProxy*);
[all...]
H A DWebFrameProxy.cpp27 #include "WebFrameProxy.h"
44 WebFrameProxy::WebFrameProxy(WebPageProxy* page, uint64_t frameID) function in class:WebKit::WebFrameProxy
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
[all...]
H A DWebFormClient.h39 class WebFrameProxy;
44 bool willSubmitForm(WebPageProxy*, WebFrameProxy*, WebFrameProxy*, const Vector<std::pair<String, String> >& textFieldValues, APIObject* userData, WebFormSubmissionListenerProxy*);
H A DWebFormSubmissionListenerProxy.h33 class WebFrameProxy;
39 static PassRefPtr<WebFormSubmissionListenerProxy> create(WebFrameProxy* frame, uint64_t listenerID)
47 WebFormSubmissionListenerProxy(WebFrameProxy*, uint64_t listenerID);
H A DWebFrameListenerProxy.h36 class WebFrameProxy;
46 WebFrameListenerProxy(WebFrameProxy*, uint64_t listenerID);
51 RefPtr<WebFrameProxy> m_frame;
H A DWebPolicyClient.h45 class WebFrameProxy;
50 bool decidePolicyForNavigationAction(WebPageProxy*, WebFrameProxy*, WebCore::NavigationType, WebEvent::Modifiers, WebMouseEvent::Button, const WebCore::ResourceRequest&, WebFramePolicyListenerProxy*, APIObject* userData);
51 bool decidePolicyForNewWindowAction(WebPageProxy*, WebFrameProxy*, WebCore::NavigationType, WebEvent::Modifiers, WebMouseEvent::Button, const WebCore::ResourceRequest&, const String& frameName, WebFramePolicyListenerProxy*, APIObject* userData);
52 bool decidePolicyForResponse(WebPageProxy*, WebFrameProxy*, const WebCore::ResourceResponse&, const WebCore::ResourceRequest&, WebFramePolicyListenerProxy*, APIObject* userData);
53 void unableToImplementPolicy(WebPageProxy*, WebFrameProxy*, const WebCore::ResourceError&, APIObject* userData);
H A DWebUIClient.h48 class WebFrameProxy;
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 String& databaseName, const String& databaseDisplayName, unsigned long long currentQuota, unsigned long long currentUsage, unsigned long long expectedUsage);
94 bool runOpenPanel(WebPageProxy*, WebFrameProxy*, const WebOpenPanelParameters::Data&, WebOpenPanelResultListenerProxy*);
95 bool decidePolicyForGeolocationPermissionRequest(WebPageProxy*, WebFrameProxy*, WebSecurityOrigin*, GeolocationPermissionRequestProxy*);
98 float headerHeight(WebPageProxy*, WebFrameProxy*);
99 float footerHeight(WebPageProxy*, WebFrameProxy*);
[all...]
H A DWebFormSubmissionListenerProxy.cpp31 WebFormSubmissionListenerProxy::WebFormSubmissionListenerProxy(WebFrameProxy* frame, uint64_t listenerID)
H A DWebFramePolicyListenerProxy.h37 static PassRefPtr<WebFramePolicyListenerProxy> create(WebFrameProxy* frame, uint64_t listenerID)
47 WebFramePolicyListenerProxy(WebFrameProxy*, uint64_t listenerID);
H A DWebFrameListenerProxy.cpp29 #include "WebFrameProxy.h"
33 WebFrameListenerProxy::WebFrameListenerProxy(WebFrameProxy* frame, uint64_t listenerID)
H A DWebFramePolicyListenerProxy.cpp29 #include "WebFrameProxy.h"
33 WebFramePolicyListenerProxy::WebFramePolicyListenerProxy(WebFrameProxy* frame, uint64_t listenerID)
H A DWebLoaderClient.cpp38 void WebLoaderClient::didStartProvisionalLoadForFrame(WebPageProxy* page, WebFrameProxy* frame, APIObject* userData)
46 void WebLoaderClient::didReceiveServerRedirectForProvisionalLoadForFrame(WebPageProxy* page, WebFrameProxy* frame, APIObject* userData)
54 void WebLoaderClient::didFailProvisionalLoadWithErrorForFrame(WebPageProxy* page, WebFrameProxy* frame, const ResourceError& error, APIObject* userData)
62 void WebLoaderClient::didCommitLoadForFrame(WebPageProxy* page, WebFrameProxy* frame, APIObject* userData)
70 void WebLoaderClient::didFinishDocumentLoadForFrame(WebPageProxy* page, WebFrameProxy* frame, APIObject* userData)
78 void WebLoaderClient::didFinishLoadForFrame(WebPageProxy* page, WebFrameProxy* frame, APIObject* userData)
86 void WebLoaderClient::didFailLoadWithErrorForFrame(WebPageProxy* page, WebFrameProxy* frame, const ResourceError& error, APIObject* userData)
94 void WebLoaderClient::didSameDocumentNavigationForFrame(WebPageProxy* page, WebFrameProxy* frame, SameDocumentNavigationType type, APIObject* userData)
102 void WebLoaderClient::didReceiveTitleForFrame(WebPageProxy* page, const String& title, WebFrameProxy* frame, APIObject* userData)
110 void WebLoaderClient::didFirstLayoutForFrame(WebPageProxy* page, WebFrameProxy* fram
[all...]
H A DWebResourceLoadClient.cpp37 void WebResourceLoadClient::didInitiateLoadForResource(WebPageProxy* page, WebFrameProxy* frame, uint64_t resourceIdentifier, const ResourceRequest& resourceRequest, bool pageIsProvisionallyLoading)
46 void WebResourceLoadClient::didSendRequestForResource(WebPageProxy* page, WebFrameProxy* frame, uint64_t resourceIdentifier, const ResourceRequest& resourceRequest, const ResourceResponse& redirectResourceResponse)
58 void WebResourceLoadClient::didReceiveResponseForResource(WebPageProxy* page, WebFrameProxy* frame, uint64_t resourceIdentifier, const ResourceResponse& resourceResponse)
67 void WebResourceLoadClient::didReceiveContentLengthForResource(WebPageProxy* page, WebFrameProxy* frame, uint64_t resourceIdentifier, uint64_t contentLength)
75 void WebResourceLoadClient::didFinishLoadForResource(WebPageProxy* page, WebFrameProxy* frame, uint64_t resourceIdentifier)
83 void WebResourceLoadClient::didFailLoadForResource(WebPageProxy* page, WebFrameProxy* frame, uint64_t resourceIdentifier, const ResourceError& error)
H A DWebFormClient.cpp36 bool WebFormClient::willSubmitForm(WebPageProxy* page, WebFrameProxy* frame, WebFrameProxy* sourceFrame, const Vector<std::pair<String, String> >& textFieldValues, APIObject* userData, WebFormSubmissionListenerProxy* listener)
H A DWebHistoryClient.cpp37 void WebHistoryClient::didNavigateWithNavigationData(WebContext* context, WebPageProxy* page, const WebNavigationDataStore& navigationDataStore, WebFrameProxy* frame)
46 void WebHistoryClient::didPerformClientRedirect(WebContext* context, WebPageProxy* page, const String& sourceURL, const String& destinationURL, WebFrameProxy* frame)
54 void WebHistoryClient::didPerformServerRedirect(WebContext* context, WebPageProxy* page, const String& sourceURL, const String& destinationURL, WebFrameProxy* frame)
62 void WebHistoryClient::didUpdateHistoryTitle(WebContext* context, WebPageProxy* page, const String& title, const String& url, WebFrameProxy* frame)
H A DWebPolicyClient.cpp37 bool WebPolicyClient::decidePolicyForNavigationAction(WebPageProxy* page, WebFrameProxy* frame, NavigationType type, WebEvent::Modifiers modifiers, WebMouseEvent::Button mouseButton, const ResourceRequest& resourceRequest, WebFramePolicyListenerProxy* listener, APIObject* userData)
48 bool WebPolicyClient::decidePolicyForNewWindowAction(WebPageProxy* page, WebFrameProxy* frame, NavigationType type, WebEvent::Modifiers modifiers, WebMouseEvent::Button mouseButton, const ResourceRequest& resourceRequest, const String& frameName, WebFramePolicyListenerProxy* listener, APIObject* userData)
59 bool WebPolicyClient::decidePolicyForResponse(WebPageProxy* page, WebFrameProxy* frame, const ResourceResponse& resourceResponse, const ResourceRequest& resourceRequest, WebFramePolicyListenerProxy* listener, APIObject* userData)
71 void WebPolicyClient::unableToImplementPolicy(WebPageProxy* page, WebFrameProxy* frame, const ResourceError& error, APIObject* userData)
H A DWebUIClient.cpp111 void WebUIClient::runJavaScriptAlert(WebPageProxy* page, const String& message, WebFrameProxy* frame)
119 bool WebUIClient::runJavaScriptConfirm(WebPageProxy* page, const String& message, WebFrameProxy* frame)
127 String WebUIClient::runJavaScriptPrompt(WebPageProxy* page, const String& message, const String& defaultValue, WebFrameProxy* frame)
255 bool WebUIClient::runBeforeUnloadConfirmPanel(WebPageProxy* page, const String& message, WebFrameProxy* frame)
279 unsigned long long WebUIClient::exceededDatabaseQuota(WebPageProxy* page, WebFrameProxy* frame, WebSecurityOrigin* origin, const String& databaseName, const String& databaseDisplayName, unsigned long long currentQuota, unsigned long long currentUsage, unsigned long long expectedUsage)
287 bool WebUIClient::runOpenPanel(WebPageProxy* page, WebFrameProxy* frame, const WebOpenPanelParameters::Data& parameterData, WebOpenPanelResultListenerProxy* listener)
297 bool WebUIClient::decidePolicyForGeolocationPermissionRequest(WebPageProxy* page, WebFrameProxy* frame, WebSecurityOrigin* origin, GeolocationPermissionRequestProxy* permissionRequest)
306 float WebUIClient::headerHeight(WebPageProxy* page, WebFrameProxy* frame)
314 float WebUIClient::footerHeight(WebPageProxy* page, WebFrameProxy* frame)
322 void WebUIClient::drawHeader(WebPageProxy* page, WebFrameProxy* fram
[all...]
H A DWebContextUserMessageCoders.h28 #include "WebFrameProxy.h"
62 WebFrameProxy* frame = static_cast<WebFrameProxy*>(m_root);
H A DWebPageProxy.h43 #include "WebFrameProxy.h"
167 WebFrameProxy* mainFrame() const { return m_mainFrame.get(); }
168 WebFrameProxy* focusedFrame() const { return m_focusedFrame.get(); }
169 WebFrameProxy* frameSetLargestFrame() const { return m_frameSetLargestFrame.get(); }
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*);
[all...]
H A DWebPageProxy.cpp918 void WebPageProxy::receivedPolicyDecision(PolicyAction action, WebFrameProxy* frame, uint64_t listenerID)
1205 void WebPageProxy::getSourceForFrame(WebFrameProxy* frame, PassRefPtr<StringCallback> prpCallback)
1246 void WebPageProxy::getMainResourceDataOfFrame(WebFrameProxy* frame, PassRefPtr<DataCallback> prpCallback)
1259 void WebPageProxy::getResourceDataFromFrame(WebFrameProxy* frame, WebURL* resourceURL, PassRefPtr<DataCallback> prpCallback)
1272 void WebPageProxy::getWebArchiveOfFrame(WebFrameProxy* frame, PassRefPtr<DataCallback> prpCallback)
1376 m_mainFrame = WebFrameProxy::create(this, frameID);
1386 WebFrameProxy* parentFrame = process()->webFrame(parentFrameID);
1392 RefPtr<WebFrameProxy> subFrame = WebFrameProxy::create(this, frameID);
1401 static bool isDisconnectedFrame(WebFrameProxy* fram
[all...]
/external/webkit/Source/WebKit2/UIProcess/API/mac/
H A DWKPrintingView.h32 class WebFrameProxy;
40 RefPtr<WebKit::WebFrameProxy> _webFrame;
60 - (id)initWithFrameProxy:(WebKit::WebFrameProxy*)frame view:(NSView *)wkView;
/external/webkit/Source/WebKit2/UIProcess/API/C/
H A DWKFrame.cpp30 #include "WebFrameProxy.h"
40 return toAPI(WebFrameProxy::APIType);
50 WebFrameProxy* frame = toImpl(frameRef);
52 case WebFrameProxy::LoadStateProvisional:
54 case WebFrameProxy::LoadStateCommitted:
56 case WebFrameProxy::LoadStateFinished:

Completed in 257 milliseconds

12