Searched refs:WebPageProxy (Results 26 - 50 of 117) sorted by relevance

12345

/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
H A DWebChromeClient.cpp99 m_page->send(Messages::WebPageProxy::SetWindowFrame(windowFrame));
106 if (!WebProcess::shared().connection()->sendSync(Messages::WebPageProxy::GetWindowFrame(), Messages::WebPageProxy::GetWindowFrame::Reply(newWindowFrame), m_page->pageID()))
124 m_page->send(Messages::WebPageProxy::SetFocus(true));
129 m_page->send(Messages::WebPageProxy::SetFocus(false));
140 m_page->send(Messages::WebPageProxy::TakeFocus(direction));
152 WebProcess::shared().connection()->send(Messages::WebPageProxy::FocusedFrameChanged(webFrame ? webFrame->frameID() : 0), m_page->pageID());
162 if (!WebProcess::shared().connection()->sendSync(Messages::WebPageProxy::CreateNewPage(windowFeatures, modifiers, mouseButton), Messages::WebPageProxy::CreateNewPage::Reply(newPageID, parameters), m_page->pageID()))
189 m_page->send(Messages::WebPageProxy
[all...]
H A DWebEditorClient.cpp33 #include "WebPageProxy.h"
193 m_page->send(Messages::WebPageProxy::EditorStateChanged(m_page->editorState()));
202 m_page->send(Messages::WebPageProxy::DidChangeCompositionSelection(frame->editor()->getCompositionSelection(start, end)));
234 m_page->send(Messages::WebPageProxy::RegisterEditCommandForUndo(webCommand->commandID(), editAction));
243 m_page->send(Messages::WebPageProxy::ClearAllEditCommands());
259 m_page->sendSync(Messages::WebPageProxy::CanUndoRedo(static_cast<uint32_t>(WebPageProxy::Undo)), Messages::WebPageProxy::CanUndoRedo::Reply(result));
266 m_page->sendSync(Messages::WebPageProxy::CanUndoRedo(static_cast<uint32_t>(WebPageProxy
[all...]
H A DWebSearchPopupMenu.cpp59 WebProcess::shared().connection()->send(Messages::WebPageProxy::SaveRecentSearches(name, searchItems), page->pageID());
71 WebProcess::shared().connection()->sendSync(Messages::WebPageProxy::LoadRecentSearches(name), Messages::WebPageProxy::LoadRecentSearches::Reply(resultItems), page->pageID());
/external/webkit/Source/WebKit2/UIProcess/
H A DBackingStore.h47 class WebPageProxy;
53 static PassOwnPtr<BackingStore> create(const WebCore::IntSize&, WebPageProxy*);
68 BackingStore(const WebCore::IntSize&, WebPageProxy*);
74 WebPageProxy* m_webPageProxy;
H A DDrawingAreaProxy.cpp29 #include "WebPageProxy.h"
35 DrawingAreaProxy::DrawingAreaProxy(DrawingAreaType type, WebPageProxy* webPageProxy)
H A DWebBackForwardList.h32 #include "WebPageProxy.h"
54 static PassRefPtr<WebBackForwardList> create(WebPageProxy* page)
81 CFDictionaryRef createCFDictionaryRepresentation(WebPageProxy::WebPageProxySessionStateFilterCallback, void* context) const;
88 WebBackForwardList(WebPageProxy*);
92 WebPageProxy* m_page;
H A DWebInspectorProxy.h48 class WebPageProxy;
59 static PassRefPtr<WebInspectorProxy> create(WebPageProxy* page)
69 WebPageProxy* page() { return m_page; }
96 static bool isInspectorPage(WebPageProxy*);
99 WebInspectorProxy(WebPageProxy* page);
103 WebPageProxy* platformCreateInspectorPage();
136 WebPageProxy* m_page;
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 DChunkedUpdateDrawingAreaProxy.h49 class WebPageProxy;
65 static PassOwnPtr<ChunkedUpdateDrawingAreaProxy> create(PlatformWebView*, WebPageProxy*);
70 ChunkedUpdateDrawingAreaProxy(PlatformWebView*, WebPageProxy*);
72 WebPageProxy* page();
H A DWebFullScreenManagerProxy.h63 class WebPageProxy;
68 static PassRefPtr<WebFullScreenManagerProxy> create(WebPageProxy*);
86 WebFullScreenManagerProxy(WebPageProxy*);
99 WebPageProxy* m_page;
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 DWebPageGroup.cpp29 #include "WebPageProxy.h"
84 void WebPageGroup::addPage(WebPageProxy* page)
89 void WebPageGroup::removePage(WebPageProxy* page)
125 for (HashSet<WebPageProxy*>::iterator it = m_pages.begin(), end = m_pages.end(); it != end; ++it) {
126 WebPageProxy* page = *it;
H A DChunkedUpdateDrawingAreaProxy.cpp35 #include "WebPageProxy.h"
42 PassOwnPtr<ChunkedUpdateDrawingAreaProxy> ChunkedUpdateDrawingAreaProxy::create(PlatformWebView* webView, WebPageProxy* webPageProxy)
47 ChunkedUpdateDrawingAreaProxy::ChunkedUpdateDrawingAreaProxy(PlatformWebView* webView, WebPageProxy* webPageProxy)
66 WebPageProxy* page = this->page();
88 WebPageProxy* page = this->page();
135 WebPageProxy* page = this->page();
H A DWebFrameProxy.h51 class WebPageProxy;
59 static PassRefPtr<WebFrameProxy> create(WebPageProxy* page, uint64_t frameID)
73 WebPageProxy* page() { return m_page; }
137 WebFrameProxy(WebPageProxy* page, uint64_t frameID);
141 WebPageProxy* m_page;
H A DDrawingAreaProxy.h55 class WebPageProxy;
96 explicit DrawingAreaProxy(DrawingAreaType, WebPageProxy*);
99 WebPageProxy* m_webPageProxy;
H A DWebEditCommandProxy.cpp30 #include "WebPageProxy.h"
39 WebEditCommandProxy::WebEditCommandProxy(uint64_t commandID, WebCore::EditAction editAction, WebPageProxy* page)
59 m_page->registerEditCommand(this, WebPageProxy::Redo);
68 m_page->registerEditCommand(this, WebPageProxy::Undo);
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)
/external/webkit/Source/WebKit2/UIProcess/gtk/
H A DWebInspectorGtk.cpp37 WebPageProxy* WebInspectorProxy::platformCreateInspectorPage()
H A DWebView.h32 #include "WebPageProxy.h"
57 WebPageProxy* page() const { return m_page.get(); }
95 virtual void registerEditCommand(PassRefPtr<WebEditCommandProxy>, WebPageProxy::UndoOrRedo);
97 virtual bool canUndoRedo(WebPageProxy::UndoOrRedo);
98 virtual void executeUndoRedo(WebPageProxy::UndoOrRedo);
104 virtual PassRefPtr<WebPopupMenuProxy> createPopupMenuProxy(WebPageProxy*);
105 virtual PassRefPtr<WebContextMenuProxy> createContextMenuProxy(WebPageProxy*);
127 RefPtr<WebPageProxy> m_page;
/external/webkit/Source/WebKit2/UIProcess/qt/
H A DWebInspectorProxyQt.cpp36 WebPageProxy* WebInspectorProxy::platformCreateInspectorPage()
/external/webkit/Source/WebKit2/WebProcess/WebPage/
H A DWebBackForwardListProxy.cpp159 m_page->send(Messages::WebPageProxy::BackForwardAddItem(itemID));
167 m_page->send(Messages::WebPageProxy::BackForwardGoToItem(historyItemToIDMap().get(item)));
176 if (!WebProcess::shared().connection()->sendSync(Messages::WebPageProxy::BackForwardItemAtIndex(itemIndex), Messages::WebPageProxy::BackForwardItemAtIndex::Reply(itemID), m_page->pageID()))
191 if (!WebProcess::shared().connection()->sendSync(Messages::WebPageProxy::BackForwardBackListCount(), Messages::WebPageProxy::BackForwardBackListCount::Reply(backListCount), m_page->pageID()))
203 if (!WebProcess::shared().connection()->sendSync(Messages::WebPageProxy::BackForwardForwardListCount(), Messages::WebPageProxy::BackForwardForwardListCount::Reply(forwardListCount), m_page->pageID()))
222 m_page->send(Messages::WebPageProxy::BackForwardClear());
/external/webkit/Source/WebKit2/UIProcess/win/
H A DWebPageProxyWin.cpp27 #include "WebPageProxy.h"
50 String WebPageProxy::standardUserAgent(const String& applicationNameForUserAgent)
58 void WebPageProxy::setPopupMenuSelectedIndex(int32_t selectedIndex)
H A DWebTextChecker.cpp74 void WebTextChecker::checkSpelling(const WebPageProxy* page, bool startBeforeSelection)
79 void WebTextChecker::changeSpellingToWord(const WebPageProxy* page, const String& text)
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/mac/
H A DWebEditorClientMac.mm177 m_page->sendSync(Messages::WebPageProxy::SubstitutionsPanelIsShowing(), Messages::WebPageProxy::SubstitutionsPanelIsShowing::Reply(isShowing));
244 m_page->sendSync(Messages::WebPageProxy::CheckTextOfParagraph(String(text, length), checkingTypes), Messages::WebPageProxy::CheckTextOfParagraph::Reply(results));
250 m_page->send(Messages::WebPageProxy::ShowCorrectionPanel(type, boundingBoxOfReplacedString, replacedString, replacementString, alternativeReplacementStrings));
255 m_page->send(Messages::WebPageProxy::DismissCorrectionPanel(reason));
261 m_page->sendSync(Messages::WebPageProxy::DismissCorrectionPanelSoon(reason), Messages::WebPageProxy::DismissCorrectionPanelSoon::Reply(result));
267 m_page->send(Messages::WebPageProxy::RecordAutocorrectionResponse(responseType, replacedString, replacementString));
/external/webkit/Source/WebKit2/UIProcess/API/qt/
H A Dqwkpage_p.h29 #include "WebPageProxy.h"
75 virtual void registerEditCommand(PassRefPtr<WebKit::WebEditCommandProxy>, WebKit::WebPageProxy::UndoOrRedo);
77 virtual bool canUndoRedo(WebPageProxy::UndoOrRedo);
78 virtual void executeUndoRedo(WebPageProxy::UndoOrRedo);
85 virtual PassRefPtr<WebKit::WebPopupMenuProxy> createPopupMenuProxy(WebKit::WebPageProxy*);
86 virtual PassRefPtr<WebKit::WebContextMenuProxy> createContextMenuProxy(WebKit::WebPageProxy*);
128 RefPtr<WebKit::WebPageProxy> page;

Completed in 192 milliseconds

12345