HomeSort by relevance Sort by last modified time
    Searched refs:webViewWindow (Results 1 - 8 of 8) sorted by null

  /external/webkit/Tools/DumpRenderTree/win/
DumpRenderTreeWin.h 44 extern HWND webViewWindow;
57 IWebView* createWebViewAndOffscreenWindow(HWND* webViewWindow = 0);
PixelDumpSupportWin.cpp 50 if (!GetWindowRect(webViewWindow, &frame))
66 SendMessage(webViewWindow, WM_PRINT, reinterpret_cast<WPARAM>(memoryDC), PRF_CLIENT | PRF_CHILDREN | PRF_OWNED);
EventSender.cpp 138 MSG msg = makeMsg(webViewWindow, WM_RBUTTONDOWN, 0, MAKELPARAM(lastMousePosition.x, lastMousePosition.y));
141 msg = makeMsg(webViewWindow, WM_RBUTTONUP, 0, MAKELPARAM(lastMousePosition.x, lastMousePosition.y));
205 MSG msg = makeMsg(webViewWindow, mouseType, wparam, MAKELPARAM(lastMousePosition.x, lastMousePosition.y));
240 ::ClientToScreen(webViewWindow, &screenPoint);
291 MSG msg = makeMsg(webViewWindow, mouseType, wparam, MAKELPARAM(lastMousePosition.x, lastMousePosition.y));
312 ::ClientToScreen(webViewWindow, &screenPoint);
339 MSG msg = makeMsg(webViewWindow, WM_MOUSEMOVE, down ? MK_LBUTTON : 0, MAKELPARAM(lastMousePosition.x, lastMousePosition.y));
393 ::PostMessage(webViewWindow, WM_DRT_SEND_QUEUED_EVENT, 0, 0);
394 while (::GetMessage(&msg, webViewWindow, 0, 0)) {
425 ::PostMessage(webViewWindow, WM_DRT_SEND_QUEUED_EVENT, 0, 0)
    [all...]
AccessibilityControllerWin.cpp 97 HWND webViewWindow;
98 if (FAILED(viewPrivate->viewWindow((OLE_HANDLE*)&webViewWindow)))
104 if (FAILED(AccessibleObjectFromWindow(webViewWindow, static_cast<DWORD>(OBJID_CLIENT), __uuidof(IAccessible), reinterpret_cast<void**>(&rootAccessible))))
DumpRenderTree.cpp 105 HWND webViewWindow;
395 ::InvalidateRect(webViewWindow, 0, TRUE);
396 ::SendMessage(webViewWindow, WM_PAINT, 0, 0);
726 ::InvalidateRect(webViewWindow, 0, TRUE);
727 ::SendMessage(webViewWindow, WM_PAINT, 0, 0);
742 ::SetWindowPos(webViewWindow, 0, 0, 0, width, height, SWP_NOMOVE);
743 ::InvalidateRect(webViewWindow, 0, TRUE);
744 ::SendMessage(webViewWindow, WM_PAINT, 0, 0);
    [all...]
LayoutTestControllerWin.cpp 816 HWND webViewWindow;
817 if (FAILED(viewPrivate->viewWindow((OLE_HANDLE*)&webViewWindow)))
820 ::SendMessage(webViewWindow, flag ? WM_SETFOCUS : WM_KILLFOCUS, (WPARAM)::GetDesktopWindow(), 0);
    [all...]
  /external/webkit/Tools/MiniBrowser/win/
BrowserView.cpp 135 HWND webViewWindow = WKViewGetWindow(m_webView);
136 ::SetWindowPos(webViewWindow, 0, rect.left, rect.top, rect.right - rect.left, rect.bottom - rect.top, SWP_NOZORDER | SWP_NOACTIVATE | SWP_NOCOPYBITS);
BrowserWindow.cpp 222 HWND webViewWindow = WKViewGetWindow(m_browserView.webView());
223 ::ShowWindow(webViewWindow, shouldHide ? SW_HIDE : SW_SHOW);

Completed in 231 milliseconds