HomeSort by relevance Sort by last modified time
    Searched refs:WebPageProxy (Results 76 - 100 of 117) sorted by null

1 2 34 5

  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/gtk/
WebEditorClientGtk.cpp 40 WebProcess::shared().connection()->sendSync(Messages::WebPageProxy::GetEditorCommandsForKeyEvent(),
41 Messages::WebPageProxy::GetEditorCommandsForKeyEvent::Reply(pendingEditorCommands),
  /external/webkit/Source/WebKit2/UIProcess/API/mac/
PageClientImpl.mm 214 void PageClientImpl::registerEditCommand(PassRefPtr<WebEditCommandProxy> prpCommand, WebPageProxy::UndoOrRedo undoOrRedo)
222 [undoManager registerUndoWithTarget:m_undoTarget.get() selector:((undoOrRedo == WebPageProxy::Undo) ? @selector(undoEditing:) : @selector(redoEditing:)) object:commandObjC.get()];
232 bool PageClientImpl::canUndoRedo(WebPageProxy::UndoOrRedo undoOrRedo)
234 return (undoOrRedo == WebPageProxy::Undo) ? [[m_wkView undoManager] canUndo] : [[m_wkView undoManager] canRedo];
237 void PageClientImpl::executeUndoRedo(WebPageProxy::UndoOrRedo undoOrRedo)
239 return (undoOrRedo == WebPageProxy::Undo) ? [[m_wkView undoManager] undo] : [[m_wkView undoManager] redo];
289 PassRefPtr<WebPopupMenuProxy> PageClientImpl::createPopupMenuProxy(WebPageProxy* page)
294 PassRefPtr<WebContextMenuProxy> PageClientImpl::createContextMenuProxy(WebPageProxy* page)
  /external/webkit/Source/WebKit2/UIProcess/cf/
WebPageProxyCF.cpp 27 #include "WebPageProxy.h"
49 PassRefPtr<WebData> WebPageProxy::sessionStateData(WebPageProxySessionStateFilterCallback filter, void* context) const
107 void WebPageProxy::restoreFromSessionStateData(WebData* webData)
189 void WebPageProxy::saveRecentSearches(const String& name, const Vector<String>& searchItems)
208 void WebPageProxy::loadRecentSearches(const String& name, Vector<String>& searchItems)
  /external/webkit/Source/WebKit2/UIProcess/gtk/
ChunkedUpdateDrawingAreaProxyGtk.cpp 42 WebPageProxy* ChunkedUpdateDrawingAreaProxy::page()
TextCheckerGtk.cpp 61 int64_t TextChecker::uniqueSpellDocumentTag(WebPageProxy*)
  /external/webkit/Source/WebKit2/UIProcess/qt/
TextCheckerQt.cpp 62 int64_t TextChecker::uniqueSpellDocumentTag(WebPageProxy*)
  /external/webkit/Source/WebKit2/WebProcess/Geolocation/
GeolocationPermissionRequestManager.cpp 65 m_page->send(Messages::WebPageProxy::RequestGeolocationPermissionForFrame(geolocationID, webFrame->frameID(), origin->databaseIdentifier()));
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
FindController.cpp 78 m_webPage->send(Messages::WebPageProxy::DidCountStringMatches(string, matchCount));
108 m_webPage->send(Messages::WebPageProxy::DidFailToFindString(string));
124 m_webPage->send(Messages::WebPageProxy::DidFindString(string, matchCount));
210 m_webPage->send(Messages::WebPageProxy::SetFindIndicator(selectionRectInWindowCoordinates, textRectsInSelectionRectCoordinates, handle, !isShowingOverlay));
222 m_webPage->send(Messages::WebPageProxy::SetFindIndicator(FloatRect(), Vector<FloatRect>(), handle, false));
WebPage.cpp 436 send(Messages::WebPageProxy::ClosePage());
707 send(Messages::WebPageProxy::ViewScaleFactorDidChange(scale));
855 send(Messages::WebPageProxy::PageDidScroll());
861 send(Messages::WebPageProxy::PageDidRequestScroll(point));
954 send(Messages::WebPageProxy::DidReceiveEvent(static_cast<uint32_t>(mouseEvent.type()), false));
971 send(Messages::WebPageProxy::DidReceiveEvent(static_cast<uint32_t>(mouseEvent.type()), handled));
989 send(Messages::WebPageProxy::DidReceiveEvent(static_cast<uint32_t>(wheelEvent.type()), handled));
1011 send(Messages::WebPageProxy::DidReceiveEvent(static_cast<uint32_t>(keyboardEvent.type()), handled));
1030 send(Messages::WebPageProxy::DidReceiveEvent(static_cast<uint32_t>(gestureEvent.type()), handled));
1045 send(Messages::WebPageProxy::ValidateCommandCallback(commandName, isEnabled, state, callbackID))
    [all...]
WebContextMenu.cpp 87 m_page->send(Messages::WebPageProxy::ShowContextMenu(view->contentsToWindow(controller->hitTestResult().point()), contextMenuState, proposedMenu, InjectedBundleUserMessageEncoder(userData.get())));
  /external/webkit/Source/WebKit2/UIProcess/
TiledDrawingAreaProxy.cpp 35 #include "WebPageProxy.h"
45 PassOwnPtr<TiledDrawingAreaProxy> TiledDrawingAreaProxy::create(PlatformWebView* webView, WebPageProxy* webPageProxy)
47 return adoptPtr(new TiledDrawingAreaProxy(webView, webPageProxy));
50 TiledDrawingAreaProxy::TiledDrawingAreaProxy(PlatformWebView* webView, WebPageProxy* webPageProxy)
51 : DrawingAreaProxy(DrawingAreaTypeTiled, webPageProxy)
71 WebPageProxy* page = this->page();
91 WebPageProxy* page = this->page();
120 WebPageProxy* page = this->page()
    [all...]
DrawingAreaProxyImpl.cpp 34 #include "WebPageProxy.h"
45 PassOwnPtr<DrawingAreaProxyImpl> DrawingAreaProxyImpl::create(WebPageProxy* webPageProxy)
47 return adoptPtr(new DrawingAreaProxyImpl(webPageProxy));
50 DrawingAreaProxyImpl::DrawingAreaProxyImpl(WebPageProxy* webPageProxy)
51 : DrawingAreaProxy(DrawingAreaTypeImpl, webPageProxy)
256 if (WebPageProxy::debugPaintFlags() & kWKDebugFlashBackingStoreUpdates)
WebContext.h 56 class WebPageProxy;
87 PassRefPtr<WebPageProxy> createWebPage(PageClient*, WebPageGroup*);
93 DownloadProxy* download(WebPageProxy* initiatingPage, const WebCore::ResourceRequest&);
  /external/webkit/Source/WebKit2/UIProcess/mac/
ChunkedUpdateDrawingAreaProxyMac.mm 34 #import "WebPageProxy.h"
40 WebPageProxy* ChunkedUpdateDrawingAreaProxy::page()
WebInspectorProxyMac.mm 33 #import "WebPageProxy.h"
79 WebPageProxy* WebInspectorProxy::platformCreateInspectorPage()
  /external/webkit/Source/WebKit2/UIProcess/win/
ChunkedUpdateDrawingAreaProxyWin.cpp 38 WebPageProxy* ChunkedUpdateDrawingAreaProxy::page()
WebContextMenuProxyWin.cpp 35 WebContextMenuProxyWin::WebContextMenuProxyWin(HWND parentWindow, WebPageProxy* page)
TextCheckerWin.cpp 85 int64_t TextChecker::uniqueSpellDocumentTag(WebPageProxy* page)
WebView.cpp 42 #include "WebPageProxy.h"
621 // Mac checks WebPageProxy::drawsBackground and
622 // WebPageProxy::drawsTransparentBackground here, but those are always false on
674 if (WebPageProxy::debugPaintFlags() & kWKDebugFlashViewUpdates) {
675 static HBRUSH brush = createBrush(WebPageProxy::viewUpdatesFlashColor().rgb()).leakPtr();
739 m_page->viewStateDidChange(WebPageProxy::ViewIsFocused);
746 m_page->viewStateDidChange(WebPageProxy::ViewIsFocused);
789 m_page->viewStateDidChange(WebPageProxy::ViewWindowIsActive);
942 static HBRUSH brush = createBrush(WebPageProxy::backingStoreUpdatesFlashColor().rgb()).leakPtr();
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/Authentication/
AuthenticationManager.cpp 73 WebProcess::shared().connection()->send(Messages::WebPageProxy::DidReceiveAuthenticationChallenge(frame->frameID(), authenticationChallenge, challengeID), frame->page()->pageID());
  /external/webkit/Source/WebKit2/UIProcess/API/qt/
qgraphicswkview.cpp 324 page()->d->page->viewStateDidChange(WebPageProxy::ViewIsFocused | WebPageProxy::ViewWindowIsActive);
329 page()->d->page->viewStateDidChange(WebPageProxy::ViewIsFocused | WebPageProxy::ViewWindowIsActive);
qwkpage.cpp 208 void QWKPagePrivate::registerEditCommand(PassRefPtr<WebEditCommandProxy>, WebPageProxy::UndoOrRedo)
216 bool QWKPagePrivate::canUndoRedo(WebPageProxy::UndoOrRedo)
221 void QWKPagePrivate::executeUndoRedo(WebPageProxy::UndoOrRedo)
248 PassRefPtr<WebPopupMenuProxy> QWKPagePrivate::createPopupMenuProxy(WebPageProxy*)
253 PassRefPtr<WebContextMenuProxy> QWKPagePrivate::createContextMenuProxy(WebPageProxy*)
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/win/
WebDragClientWin.cpp 86 m_page->send(Messages::WebPageProxy::StartDragDrop(imageOrigin, dragPoint, okEffect, dragData.dragDataMap(), IntSize(bitmapInfo.bmiHeader.biWidth, bitmapInfo.bmiHeader.biHeight), handle, isLink), m_page->pageID());
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKAPICast.h 75 class WebPageProxy;
104 WK_ADD_API_MAPPING(WKPageRef, WebPageProxy)
  /external/webkit/Source/WebKit2/WebProcess/WebPage/mac/
WebPageMac.mm 77 send(Messages::WebPageProxy::RegisterWebProcessAccessibilityToken(dataToken));
157 WebProcess::shared().connection()->sendSync(Messages::WebPageProxy::ExecuteSavedCommandBySelector(commands[i].commandName),
158 Messages::WebPageProxy::ExecuteSavedCommandBySelector::Reply(commandWasHandledByUIProcess), m_pageID);
185 bool sendResult = WebProcess::shared().connection()->sendSync(Messages::WebPageProxy::InterpretQueuedKeyEvent(editorState()),
186 Messages::WebPageProxy::InterpretQueuedKeyEvent::Reply(eventWasHandled, commands), m_pageID);
531 send(Messages::WebPageProxy::DidPerformDictionaryLookup(rangeText, dictionaryPopupInfo));

Completed in 516 milliseconds

1 2 34 5