Home
last modified time | relevance | path

Searched refs:webViewWindow (Results 1 – 8 of 8) sorted by relevance

/external/webkit/Tools/DumpRenderTree/win/
DEventSender.cpp138 …MSG msg = makeMsg(webViewWindow, WM_RBUTTONDOWN, 0, MAKELPARAM(lastMousePosition.x, lastMousePosit… in contextClickCallback()
141 …msg = makeMsg(webViewWindow, WM_RBUTTONUP, 0, MAKELPARAM(lastMousePosition.x, lastMousePosition.y)… in contextClickCallback()
205 …MSG msg = makeMsg(webViewWindow, mouseType, wparam, MAKELPARAM(lastMousePosition.x, lastMousePosit… in mouseDownCallback()
240 ::ClientToScreen(webViewWindow, &screenPoint); in doMouseUp()
291 …MSG msg = makeMsg(webViewWindow, mouseType, wparam, MAKELPARAM(lastMousePosition.x, lastMousePosit… in mouseUpCallback()
312 ::ClientToScreen(webViewWindow, &screenPoint); in doMouseMove()
339 …MSG msg = makeMsg(webViewWindow, WM_MOUSEMOVE, down ? MK_LBUTTON : 0, MAKELPARAM(lastMousePosition… in mouseMoveToCallback()
393 ::PostMessage(webViewWindow, WM_DRT_SEND_QUEUED_EVENT, 0, 0); in replaySavedEvents()
394 while (::GetMessage(&msg, webViewWindow, 0, 0)) { in replaySavedEvents()
425 ::PostMessage(webViewWindow, WM_DRT_SEND_QUEUED_EVENT, 0, 0); in replaySavedEvents()
[all …]
DDumpRenderTreeWin.h44 extern HWND webViewWindow;
57 IWebView* createWebViewAndOffscreenWindow(HWND* webViewWindow = 0);
DPixelDumpSupportWin.cpp50 if (!GetWindowRect(webViewWindow, &frame)) in createBitmapContextFromWebView()
66 …SendMessage(webViewWindow, WM_PRINT, reinterpret_cast<WPARAM>(memoryDC), PRF_CLIENT | PRF_CHILDREN… in createBitmapContextFromWebView()
DAccessibilityControllerWin.cpp97 HWND webViewWindow; in rootElement() local
98 if (FAILED(viewPrivate->viewWindow((OLE_HANDLE*)&webViewWindow))) in rootElement()
104 …if (FAILED(AccessibleObjectFromWindow(webViewWindow, static_cast<DWORD>(OBJID_CLIENT), __uuidof(IA… in rootElement()
DDumpRenderTree.cpp105 HWND webViewWindow; variable
395 ::InvalidateRect(webViewWindow, 0, TRUE); in displayWebView()
396 ::SendMessage(webViewWindow, WM_PAINT, 0, 0); in displayWebView()
726 ::InvalidateRect(webViewWindow, 0, TRUE); in dump()
727 ::SendMessage(webViewWindow, WM_PAINT, 0, 0); in dump()
742 ::SetWindowPos(webViewWindow, 0, 0, 0, width, height, SWP_NOMOVE); in dump()
743 ::InvalidateRect(webViewWindow, 0, TRUE); in dump()
744 ::SendMessage(webViewWindow, WM_PAINT, 0, 0); in dump()
1197 IWebView* createWebViewAndOffscreenWindow(HWND* webViewWindow) in createWebViewAndOffscreenWindow() argument
1241 if (webViewWindow) in createWebViewAndOffscreenWindow()
[all …]
DLayoutTestControllerWin.cpp816 HWND webViewWindow; in setWindowIsKey() local
817 if (FAILED(viewPrivate->viewWindow((OLE_HANDLE*)&webViewWindow))) in setWindowIsKey()
820 … ::SendMessage(webViewWindow, flag ? WM_SETFOCUS : WM_KILLFOCUS, (WPARAM)::GetDesktopWindow(), 0); in setWindowIsKey()
/external/webkit/Tools/MiniBrowser/win/
DBrowserView.cpp135 HWND webViewWindow = WKViewGetWindow(m_webView); in setFrame() local
136 …::SetWindowPos(webViewWindow, 0, rect.left, rect.top, rect.right - rect.left, rect.bottom - rect.t… in setFrame()
DBrowserWindow.cpp222 HWND webViewWindow = WKViewGetWindow(m_browserView.webView()); in onCommand() local
223 ::ShowWindow(webViewWindow, shouldHide ? SW_HIDE : SW_SHOW); in onCommand()