Home
last modified time | relevance | path

Searched refs:pageOverlay (Results 1 – 5 of 5) sorted by relevance

/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
DWKBundlePageOverlay.cpp59 virtual void willMoveToWebPage(PageOverlay* pageOverlay, WebPage* page) in willMoveToWebPage() argument
64 m_client.willMoveToPage(toAPI(pageOverlay), toAPI(page), m_client.clientInfo); in willMoveToWebPage()
67 virtual void didMoveToWebPage(PageOverlay* pageOverlay, WebPage* page) in didMoveToWebPage() argument
72 m_client.didMoveToPage(toAPI(pageOverlay), toAPI(page), m_client.clientInfo); in didMoveToWebPage()
75 …virtual void drawRect(PageOverlay* pageOverlay, GraphicsContext& graphicsContext, const IntRect& d… in drawRect() argument
80 …m_client.drawRect(toAPI(pageOverlay), graphicsContext.platformContext(), toAPI(dirtyRect), m_clien… in drawRect()
83 virtual bool mouseEvent(PageOverlay* pageOverlay, const WebMouseEvent& event) in mouseEvent() argument
90 …return m_client.mouseDown(toAPI(pageOverlay), toAPI(event.position()), toAPI(event.button()), m_cl… in mouseEvent()
96 …return m_client.mouseUp(toAPI(pageOverlay), toAPI(event.position()), toAPI(event.button()), m_clie… in mouseEvent()
103 … return m_client.mouseMoved(toAPI(pageOverlay), toAPI(event.position()), m_client.clientInfo); in mouseEvent()
[all …]
DWKBundlePageOverlay.h44 typedef void (*WKBundlePageOverlayWillMoveToPageCallback)(WKBundlePageOverlayRef pageOverlay, WKBun…
45 typedef void (*WKBundlePageOverlayDidMoveToPageCallback)(WKBundlePageOverlayRef pageOverlay, WKBund…
46 typedef void (*WKBundlePageOverlayDrawRectCallback)(WKBundlePageOverlayRef pageOverlay, void* graph…
47 typedef bool (*WKBundlePageOverlayMouseDownCallback)(WKBundlePageOverlayRef pageOverlay, WKPoint po…
48 typedef bool (*WKBundlePageOverlayMouseUpCallback)(WKBundlePageOverlayRef pageOverlay, WKPoint posi…
49 typedef bool (*WKBundlePageOverlayMouseMovedCallback)(WKBundlePageOverlayRef pageOverlay, WKPoint p…
50 typedef bool (*WKBundlePageOverlayMouseDraggedCallback)(WKBundlePageOverlayRef pageOverlay, WKPoint…
DWKBundlePage.h288 …PORT void WKBundlePageInstallPageOverlay(WKBundlePageRef page, WKBundlePageOverlayRef pageOverlay);
289 …RT void WKBundlePageUninstallPageOverlay(WKBundlePageRef page, WKBundlePageOverlayRef pageOverlay);
/external/webkit/Source/WebKit2/WebProcess/WebPage/
DFindController.cpp293 void FindController::drawRect(PageOverlay* pageOverlay, GraphicsContext& graphicsContext, const Int… in drawRect() argument
295 float fractionFadedIn = pageOverlay->fractionFadedIn(); in drawRect()
324 bool FindController::mouseEvent(PageOverlay* pageOverlay, const WebMouseEvent& mouseEvent) in mouseEvent() argument
DWebPage.cpp747 void WebPage::installPageOverlay(PassRefPtr<PageOverlay> pageOverlay) in installPageOverlay() argument
754 if (pageOverlay) { in installPageOverlay()
761 m_pageOverlay = pageOverlay; in installPageOverlay()
771 void WebPage::uninstallPageOverlay(PageOverlay* pageOverlay, bool fadeOut) in uninstallPageOverlay() argument
773 if (pageOverlay != m_pageOverlay) in uninstallPageOverlay()