Home
last modified time | relevance | path

Searched refs:WebPage (Results 1 – 25 of 140) sorted by relevance

123456

/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
DInjectedBundlePageLoaderClient.h45 class WebPage; variable
50 void didStartProvisionalLoadForFrame(WebPage*, WebFrame*, RefPtr<APIObject>& userData);
51 …void didReceiveServerRedirectForProvisionalLoadForFrame(WebPage*, WebFrame*, RefPtr<APIObject>& us…
52 …void didFailProvisionalLoadWithErrorForFrame(WebPage*, WebFrame*, const WebCore::ResourceError&, R…
53 void didCommitLoadForFrame(WebPage*, WebFrame*, RefPtr<APIObject>& userData);
54 void didFinishDocumentLoadForFrame(WebPage*, WebFrame*, RefPtr<APIObject>& userData);
55 void didFinishLoadForFrame(WebPage*, WebFrame*, RefPtr<APIObject>& userData);
56 …void didFailLoadWithErrorForFrame(WebPage*, WebFrame*, const WebCore::ResourceError&, RefPtr<APIOb…
57 …void didSameDocumentNavigationForFrame(WebPage*, WebFrame*, SameDocumentNavigationType, RefPtr<API…
58 void didReceiveTitleForFrame(WebPage*, const String&, WebFrame*, RefPtr<APIObject>& userData);
[all …]
DInjectedBundlePageEditorClient.h44 class WebPage; variable
48 bool shouldBeginEditing(WebPage*, WebCore::Range*);
49 bool shouldEndEditing(WebPage*, WebCore::Range*);
50 …bool shouldInsertNode(WebPage*, WebCore::Node*, WebCore::Range* rangeToReplace, WebCore::EditorIns…
51 …bool shouldInsertText(WebPage*, StringImpl*, WebCore::Range* rangeToReplace, WebCore::EditorInsert…
52 bool shouldDeleteRange(WebPage*, WebCore::Range*);
53 …bool shouldChangeSelectedRange(WebPage*, WebCore::Range* fromRange, WebCore::Range* toRange, WebCo…
54 bool shouldApplyStyle(WebPage*, WebCore::CSSStyleDeclaration*, WebCore::Range*);
55 void didBeginEditing(WebPage*, StringImpl* notificationName);
56 void didEndEditing(WebPage*, StringImpl* notificationName);
[all …]
DInjectedBundlePageUIClient.h44 class WebPage; variable
48 void willAddMessageToConsole(WebPage*, const String& message, int32_t lineNumber);
49 void willSetStatusbarText(WebPage*, const String&);
50 void willRunJavaScriptAlert(WebPage*, const String&, WebFrame*);
51 void willRunJavaScriptConfirm(WebPage*, const String&, WebFrame*);
52 void willRunJavaScriptPrompt(WebPage*, const String&, const String&, WebFrame*);
53 …void mouseDidMoveOverElement(WebPage*, const WebCore::HitTestResult&, WebEvent::Modifiers, RefPtr<…
54 void pageDidScroll(WebPage*);
57 …void paintCustomOverhangArea(WebPage*, WebCore::GraphicsContext*, const WebCore::IntRect&, const W…
59 String shouldGenerateFileForUpload(WebPage*, const String& originalFilePath);
[all …]
DInjectedBundlePageLoaderClient.cpp39 void InjectedBundlePageLoaderClient::didStartProvisionalLoadForFrame(WebPage* page, WebFrame* frame… in didStartProvisionalLoadForFrame()
49 void InjectedBundlePageLoaderClient::didReceiveServerRedirectForProvisionalLoadForFrame(WebPage* pa… in didReceiveServerRedirectForProvisionalLoadForFrame()
59 void InjectedBundlePageLoaderClient::didFailProvisionalLoadWithErrorForFrame(WebPage* page, WebFram… in didFailProvisionalLoadWithErrorForFrame()
69 void InjectedBundlePageLoaderClient::didCommitLoadForFrame(WebPage* page, WebFrame* frame, RefPtr<A… in didCommitLoadForFrame()
79 void InjectedBundlePageLoaderClient::didFinishDocumentLoadForFrame(WebPage* page, WebFrame* frame, … in didFinishDocumentLoadForFrame()
89 void InjectedBundlePageLoaderClient::didFinishLoadForFrame(WebPage* page, WebFrame* frame, RefPtr<A… in didFinishLoadForFrame()
99 void InjectedBundlePageLoaderClient::didFailLoadWithErrorForFrame(WebPage* page, WebFrame* frame, c… in didFailLoadWithErrorForFrame()
109 void InjectedBundlePageLoaderClient::didSameDocumentNavigationForFrame(WebPage* page, WebFrame* fra… in didSameDocumentNavigationForFrame()
119 void InjectedBundlePageLoaderClient::didReceiveTitleForFrame(WebPage* page, const String& title, We… in didReceiveTitleForFrame()
129 void InjectedBundlePageLoaderClient::didFirstLayoutForFrame(WebPage* page, WebFrame* frame, RefPtr<… in didFirstLayoutForFrame()
[all …]
DInjectedBundlePageFormClient.h46 class WebPage; variable
50 void textFieldDidBeginEditing(WebPage*, WebCore::HTMLInputElement*, WebFrame*);
51 void textFieldDidEndEditing(WebPage*, WebCore::HTMLInputElement*, WebFrame*);
52 void textDidChangeInTextField(WebPage*, WebCore::HTMLInputElement*, WebFrame*);
53 void textDidChangeInTextArea(WebPage*, WebCore::HTMLTextAreaElement*, WebFrame*);
54 …bool shouldPerformActionInTextField(WebPage*, WebCore::HTMLInputElement*, WKInputFieldActionType, …
55 …void willSubmitForm(WebPage*, WebCore::HTMLFormElement*, WebFrame*, WebFrame* sourceFrame, const V…
DInjectedBundlePageResourceLoadClient.h44 class WebPage; variable
49 …void didInitiateLoadForResource(WebPage*, WebFrame*, uint64_t identifier, const WebCore::ResourceR…
50 …void willSendRequestForFrame(WebPage*, WebFrame*, uint64_t identifier, WebCore::ResourceRequest&, …
51 …void didReceiveResponseForResource(WebPage*, WebFrame*, uint64_t identifier, const WebCore::Resour…
52 …void didReceiveContentLengthForResource(WebPage*, WebFrame*, uint64_t identifier, uint64_t content…
53 void didFinishLoadForResource(WebPage*, WebFrame*, uint64_t identifier);
54 …void didFailLoadForResource(WebPage*, WebFrame*, uint64_t identifier, const WebCore::ResourceError…
DInjectedBundlePageEditorClient.cpp39 bool InjectedBundlePageEditorClient::shouldBeginEditing(WebPage* page, Range* range) in shouldBeginEditing()
48 bool InjectedBundlePageEditorClient::shouldEndEditing(WebPage* page, Range* range) in shouldEndEditing()
57 bool InjectedBundlePageEditorClient::shouldInsertNode(WebPage* page, Node* node, Range* rangeToRepl… in shouldInsertNode()
67 bool InjectedBundlePageEditorClient::shouldInsertText(WebPage* page, StringImpl* text, Range* range… in shouldInsertText()
76 bool InjectedBundlePageEditorClient::shouldDeleteRange(WebPage* page, Range* range) in shouldDeleteRange()
85 bool InjectedBundlePageEditorClient::shouldChangeSelectedRange(WebPage* page, Range* fromRange, Ran… in shouldChangeSelectedRange()
95 bool InjectedBundlePageEditorClient::shouldApplyStyle(WebPage* page, CSSStyleDeclaration* style, Ra… in shouldApplyStyle()
104 void InjectedBundlePageEditorClient::didBeginEditing(WebPage* page, StringImpl* notificationName) in didBeginEditing()
110 void InjectedBundlePageEditorClient::didEndEditing(WebPage* page, StringImpl* notificationName) in didEndEditing()
116 void InjectedBundlePageEditorClient::didChange(WebPage* page, StringImpl* notificationName) in didChange()
[all …]
DInjectedBundlePageUIClient.cpp39 void InjectedBundlePageUIClient::willAddMessageToConsole(WebPage* page, const String& message, int3… in willAddMessageToConsole()
45 void InjectedBundlePageUIClient::willSetStatusbarText(WebPage* page, const String& statusbarText) in willSetStatusbarText()
51 void InjectedBundlePageUIClient::willRunJavaScriptAlert(WebPage* page, const String& alertText, Web… in willRunJavaScriptAlert()
57 void InjectedBundlePageUIClient::willRunJavaScriptConfirm(WebPage* page, const String& message, Web… in willRunJavaScriptConfirm()
63 void InjectedBundlePageUIClient::willRunJavaScriptPrompt(WebPage* page, const String& message, cons… in willRunJavaScriptPrompt()
69 void InjectedBundlePageUIClient::mouseDidMoveOverElement(WebPage* page, const HitTestResult& coreHi… in mouseDidMoveOverElement()
81 void InjectedBundlePageUIClient::pageDidScroll(WebPage* page) in pageDidScroll()
94 void InjectedBundlePageUIClient::paintCustomOverhangArea(WebPage* page, GraphicsContext* graphicsCo… in paintCustomOverhangArea()
102 String InjectedBundlePageUIClient::shouldGenerateFileForUpload(WebPage* page, const String& origina… in shouldGenerateFileForUpload()
110 String InjectedBundlePageUIClient::generateFileForUpload(WebPage* page, const String& originalFileP… in generateFileForUpload()
DInjectedBundlePagePolicyClient.h44 class WebPage; variable
48 …WKBundlePagePolicyAction decidePolicyForNavigationAction(WebPage*, WebFrame*, InjectedBundleNaviga…
49 …WKBundlePagePolicyAction decidePolicyForNewWindowAction(WebPage*, WebFrame*, InjectedBundleNavigat…
50 …WKBundlePagePolicyAction decidePolicyForResponse(WebPage*, WebFrame*, const WebCore::ResourceRespo…
51 …void unableToImplementPolicy(WebPage*, WebFrame*, const WebCore::ResourceError&, RefPtr<APIObject>…
DInjectedBundlePageResourceLoadClient.cpp36 void InjectedBundlePageResourceLoadClient::didInitiateLoadForResource(WebPage* page, WebFrame* fram… in didInitiateLoadForResource()
44 void InjectedBundlePageResourceLoadClient::willSendRequestForFrame(WebPage* page, WebFrame* frame, … in willSendRequestForFrame()
56 void InjectedBundlePageResourceLoadClient::didReceiveResponseForResource(WebPage* page, WebFrame* f… in didReceiveResponseForResource()
64 void InjectedBundlePageResourceLoadClient::didReceiveContentLengthForResource(WebPage* page, WebFra… in didReceiveContentLengthForResource()
72 void InjectedBundlePageResourceLoadClient::didFinishLoadForResource(WebPage* page, WebFrame* frame,… in didFinishLoadForResource()
80 void InjectedBundlePageResourceLoadClient::didFailLoadForResource(WebPage* page, WebFrame* frame, u… in didFailLoadForResource()
DInjectedBundlePageFullScreenClient.h42 class WebPage; variable
46 bool supportsFullScreen(WebPage*, bool withKeyboard);
47 void enterFullScreenForElement(WebPage*, WebCore::Element*);
48 void exitFullScreenForElement(WebPage*, WebCore::Element*);
/external/webkit/Source/WebKit2/WebProcess/WebPage/
DWebPage.cpp141 PassRefPtr<WebPage> WebPage::create(uint64_t pageID, const WebPageCreationParameters& parameters) in create()
143 RefPtr<WebPage> page = adoptRef(new WebPage(pageID, parameters)); in create()
151 WebPage::WebPage(uint64_t pageID, const WebPageCreationParameters& parameters) in WebPage() function in WebKit::WebPage
235 WebPage::~WebPage() in ~WebPage()
253 void WebPage::dummy(bool&) in dummy()
257 CoreIPC::Connection* WebPage::connection() const in connection()
262 void WebPage::initializeInjectedBundleContextMenuClient(WKBundlePageContextMenuClient* client) in initializeInjectedBundleContextMenuClient()
267 void WebPage::initializeInjectedBundleEditorClient(WKBundlePageEditorClient* client) in initializeInjectedBundleEditorClient()
272 void WebPage::initializeInjectedBundleFormClient(WKBundlePageFormClient* client) in initializeInjectedBundleFormClient()
277 void WebPage::initializeInjectedBundleLoaderClient(WKBundlePageLoaderClient* client) in initializeInjectedBundleLoaderClient()
[all …]
DWebInspector.h38 class WebPage; variable
45 static PassRefPtr<WebInspector> create(WebPage*);
47 WebPage* page() const { return m_page; } in page()
48 WebPage* inspectorPage() const { return m_inspectorPage; } in inspectorPage()
66 explicit WebInspector(WebPage*);
71 WebPage* createInspectorPage();
89 WebPage* m_page;
90 WebPage* m_inspectorPage;
DFindController.h42 class WebPage; variable
48 explicit FindController(WebPage*);
60 virtual void willMoveToWebPage(PageOverlay*, WebPage*);
61 virtual void didMoveToWebPage(PageOverlay*, WebPage*);
69 WebPage* m_webPage;
DWebContextMenu.h31 class WebPage; variable
35 static PassRefPtr<WebContextMenu> create(WebPage* page) in create()
46 WebContextMenu(WebPage*);
48 WebPage* m_page;
DWebOpenPanelResultListener.h34 class WebPage; variable
38 … static PassRefPtr<WebOpenPanelResultListener> create(WebPage*, PassRefPtr<WebCore::FileChooser>);
45 WebOpenPanelResultListener(WebPage*, PassRefPtr<WebCore::FileChooser>);
47 WebPage* m_page;
/external/webkit/Source/WebKit2/UIProcess/mac/
DWebPageProxyMac.mm133 process()->send(Messages::WebPage::SetWindowIsVisible(windowIsVisible), m_pageID);
141 …process()->send(Messages::WebPage::WindowAndViewFramesChanged(windowFrameInScreenCoordinates, view…
146 …essages::WebPage::SetComposition(text, underlines, selectionStart, selectionEnd, replacementRangeS…
151 …process()->sendSync(Messages::WebPage::ConfirmComposition(), Messages::WebPage::ConfirmComposition…
157 …process()->sendSync(Messages::WebPage::InsertText(text, replacementRangeStart, replacementRangeEnd…
163 …process()->sendSync(Messages::WebPage::GetMarkedRange(), Messages::WebPage::GetMarkedRange::Reply(…
168 …process()->sendSync(Messages::WebPage::GetSelectedRange(), Messages::WebPage::GetSelectedRange::Re…
173 …process()->sendSync(Messages::WebPage::GetAttributedSubstringFromRange(location, length), Messages…
179 …process()->sendSync(Messages::WebPage::CharacterIndexForPoint(point), Messages::WebPage::Character…
186 …process()->sendSync(Messages::WebPage::FirstRectForCharacterRange(location, length), Messages::Web…
[all …]
/external/webkit/Tools/QtTestBrowser/
Dwebpage.cpp44 WebPage::WebPage(QObject* parent) in WebPage() function in WebPage
57 void WebPage::applyProxy() in applyProxy()
67 bool WebPage::supportsExtension(QWebPage::Extension extension) const in supportsExtension()
74 bool WebPage::extension(Extension extension, const ExtensionOption* option, ExtensionReturn* output) in extension()
85 bool WebPage::acceptNavigationRequest(QWebFrame* frame, const QNetworkRequest& request, NavigationT… in acceptNavigationRequest()
109 void WebPage::openUrlInDefaultBrowser(const QUrl& url) in openUrlInDefaultBrowser()
119 QString WebPage::userAgentForUrl(const QUrl& url) const in userAgentForUrl()
126 bool WebPage::shouldInterruptJavaScript() in shouldInterruptJavaScript()
133 void WebPage::authenticationRequired(QNetworkReply* reply, QAuthenticator* authenticator) in authenticationRequired()
176 void WebPage::requestPermission(QWebFrame* frame, QWebPage::Feature feature) in requestPermission()
[all …]
/external/webkit/Source/WebKit2/WebProcess/Geolocation/
DWebGeolocationManager.cpp59 void WebGeolocationManager::registerWebPage(WebPage* page) in registerWebPage()
71 void WebGeolocationManager::unregisterWebPage(WebPage* page) in unregisterWebPage()
86 HashSet<WebPage*>::const_iterator it = m_pageSet.begin(); in didChangePosition()
87 HashSet<WebPage*>::const_iterator end = m_pageSet.end(); in didChangePosition()
89 WebPage* page = *it; in didChangePosition()
102 HashSet<WebPage*>::const_iterator it = m_pageSet.begin(); in didFailToDeterminePosition()
103 HashSet<WebPage*>::const_iterator end = m_pageSet.end(); in didFailToDeterminePosition()
105 WebPage* page = *it; in didFailToDeterminePosition()
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
DWebFrameLoaderClient.cpp126 WebPage* webPage = m_frame->page(); in detachedFromParent2()
147 WebPage* webPage = m_frame->page(); in assignIdentifierToInitialRequest()
161 WebPage* webPage = m_frame->page(); in dispatchWillSendRequest()
185 WebPage* webPage = m_frame->page(); in dispatchDidReceiveAuthenticationChallenge()
203 WebPage* webPage = m_frame->page(); in canAuthenticateAgainstProtectionSpace()
217 WebPage* webPage = m_frame->page(); in dispatchDidReceiveResponse()
227 WebPage* webPage = m_frame->page(); in dispatchDidReceiveContentLength()
237 WebPage* webPage = m_frame->page(); in dispatchDidFinishLoading()
247 WebPage* webPage = m_frame->page(); in dispatchDidFailLoading()
268 WebPage* webPage = m_frame->page(); in dispatchDidHandleOnloadEvents()
[all …]
DWebPopupMenu.h37 class WebPage; variable
43 static PassRefPtr<WebPopupMenu> create(WebPage*, WebCore::PopupMenuClient*);
46 WebPage* page() { return m_page; } in page()
58 WebPopupMenu(WebPage*, WebCore::PopupMenuClient*);
64 WebPage* m_page;
/external/webkit/Source/WebKit2/WebProcess/WebPage/gtk/
DWebPageGtk.cpp45 void WebPage::platformInitialize() in platformInitialize()
50 void WebPage::platformPreferencesDidChange(const WebPreferencesStore&) in platformPreferencesDidChange()
60 bool WebPage::performDefaultBehaviorForKeyEvent(const WebKeyboardEvent& keyboardEvent) in performDefaultBehaviorForKeyEvent()
106 bool WebPage::platformHasLocalDataForURL(const WebCore::KURL&) in platformHasLocalDataForURL()
113 String WebPage::cachedResponseMIMETypeForURL(const WebCore::KURL&) in cachedResponseMIMETypeForURL()
119 bool WebPage::platformCanHandleRequest(const WebCore::ResourceRequest&) in platformCanHandleRequest()
/external/webkit/Source/WebKit2/UIProcess/
DWebPageProxy.cpp232 …process()->send(Messages::WebPage::SetCanRunBeforeUnloadConfirmPanel(m_uiClient.canRunBeforeUnload… in initializeUIClient()
233 process()->send(Messages::WebPage::SetCanRunModal(m_uiClient.canRunModal()), m_pageID); in initializeUIClient()
272 …process()->send(Messages::WebPage::GoToBackForwardItem(item->itemID(), sandboxExtensionHandle), m_… in reattachToWebProcessWithItem()
354 process()->send(Messages::WebPage::Close(), m_pageID); in close()
363 process()->send(Messages::WebPage::TryClose(), m_pageID); in tryClose()
388 process()->send(Messages::WebPage::LoadURL(url, sandboxExtensionHandle), m_pageID); in loadURL()
400 …process()->send(Messages::WebPage::LoadURLRequest(urlRequest->resourceRequest(), sandboxExtensionH… in loadURLRequest()
408 process()->send(Messages::WebPage::LoadHTMLString(htmlString, baseURL), m_pageID); in loadHTMLString()
419 …process()->send(Messages::WebPage::LoadAlternateHTMLString(htmlString, baseURL, unreachableURL), m… in loadAlternateHTMLString()
427 process()->send(Messages::WebPage::LoadPlainTextString(string), m_pageID); in loadPlainTextString()
[all …]
/external/webkit/Source/WebKit2/WebProcess/WebPage/win/
DWebPageWin.cpp61 void WebPage::platformInitialize() in platformInitialize()
66 void WebPage::platformPreferencesDidChange(const WebPreferencesStore& store) in platformPreferencesDidChange()
165 const char* WebPage::interpretKeyEvent(const KeyboardEvent* evt) in interpretKeyEvent()
200 bool WebPage::performDefaultBehaviorForKeyEvent(const WebKeyboardEvent& keyboardEvent) in performDefaultBehaviorForKeyEvent()
263 bool WebPage::platformHasLocalDataForURL(const WebCore::KURL& url) in platformHasLocalDataForURL()
287 String WebPage::cachedResponseMIMETypeForURL(const WebCore::KURL& url) in cachedResponseMIMETypeForURL()
314 bool WebPage::platformCanHandleRequest(const WebCore::ResourceRequest& request) in platformCanHandleRequest()
323 void WebPage::confirmComposition(const String& compositionString) in confirmComposition()
331 void WebPage::setComposition(const String& compositionString, const Vector<WebCore::CompositionUnde… in setComposition()
339 void WebPage::firstRectForCharacterInSelectedRange(const uint64_t characterPosition, WebCore::IntRe… in firstRectForCharacterInSelectedRange()
[all …]
/external/webkit/Source/WebKit2/
DWebKit2.pro284 WebProcess/WebPage/ChunkedUpdateDrawingArea.h \
285 WebProcess/WebPage/DrawingArea.h \
286 WebProcess/WebPage/FindController.h \
287 WebProcess/WebPage/PageOverlay.h \
288 WebProcess/WebPage/WebContextMenu.h \
289 WebProcess/WebPage/WebEditCommand.h \
290 WebProcess/WebPage/WebFrame.h \
291 WebProcess/WebPage/WebInspector.h \
292 WebProcess/WebPage/WebOpenPanelResultListener.h \
293 WebProcess/WebPage/WebPage.h \
[all …]

123456