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

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

Completed in 79 milliseconds