HomeSort by relevance Sort by last modified time
    Searched refs:hostWindow (Results 1 - 25 of 64) sorted by null

1 2 3

  /external/webkit/Source/WebCore/platform/chromium/
FramelessScrollView.cpp 41 // Remove native scrollbars now before we lose the connection to the HostWindow.
62 if (HostWindow* h = hostWindow())
66 HostWindow* FramelessScrollView::hostWindow() const
FramelessScrollView.h 72 virtual HostWindow* hostWindow() const;
WidgetChromium.cpp 35 #include "HostWindow.h"
62 view->hostWindow()->setCursor(cursor);
  /external/webkit/Source/WebCore/platform/win/
WidgetWin.cpp 76 view->hostWindow()->setCursor(cursor);
PlatformScreenWin.cpp 30 #include "HostWindow.h"
43 HWND window = widget ? widget->root()->hostWindow()->platformPageClient() : 0;
PopupMenuWin.cpp 34 #include "HostWindow.h"
134 HWND hostWindow = view->hostWindow()->platformPageClient();
150 hostWindow, 0, WebCore::instanceHandle(), this);
167 ::GetWindowRect(hostWindow, &viewRect);
191 ::SetCapture(hostWindow);
202 msg.hwnd = hostWindow;
263 if (activeWindow != hostWindow && !::IsChild(activeWindow, hostWindow))
265 if (::GetCapture() != hostWindow)
    [all...]
  /external/webkit/Source/WebCore/platform/gtk/
WidgetGtk.cpp 35 #include "HostWindow.h"
58 gtk_widget_grab_focus(platformWidget() ? platformWidget() : GTK_WIDGET(root()->hostWindow()->platformPageClient()));
66 view->hostWindow()->setCursor(cursor);
ScrollViewGtk.cpp 42 #include "HostWindow.h"
171 if (parent() || !hostWindow() || !hostWindow()->platformPageClient()) {
179 GtkWidget* measuredWidget = hostWindow()->platformPageClient();
227 if (hostWindow())
228 hostWindow()->scrollbarsModeDidChange();
PlatformScreenGtk.cpp 35 #include "HostWindow.h"
53 GtkWidget* container = GTK_WIDGET(widget->root()->hostWindow()->platformPageClient());
96 GtkWidget* container = gtk_widget_get_toplevel(GTK_WIDGET(widget->root()->hostWindow()->platformPageClient()));
117 GtkWidget* container = GTK_WIDGET(widget->root()->hostWindow()->platformPageClient());
  /external/webkit/Source/WebCore/platform/qt/
PlatformScreenQt.cpp 37 #include "HostWindow.h"
50 QWebPageClient* client = w->root()->hostWindow()->platformPageClient();
63 QWebPageClient* client = w->root()->hostWindow()->platformPageClient();
WidgetQt.cpp 38 #include "HostWindow.h"
84 view->hostWindow()->setCursor(cursor);
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebInspectorClient.cpp 294 HWND hostWindow;
295 if (!SUCCEEDED(m_inspectedWebView->hostWindow((OLE_HANDLE*)&hostWindow)))
299 GetClientRect(hostWindow, &hostWindowRect);
355 HWND hostWindow;
356 if (SUCCEEDED(m_inspectedWebView->hostWindow((OLE_HANDLE*)&hostWindow)))
357 SendMessage(hostWindow, WM_SIZE, 0, 0);
393 HWND hostWindow;
394 if (FAILED(m_inspectedWebView->hostWindow(reinterpret_cast<OLE_HANDLE*>(&hostWindow)))
    [all...]
  /external/webkit/Source/WebKit/wx/WebKitSupport/
EditorClientWx.cpp 35 #include "HostWindow.h"
256 wxWebView* webKitWin = dynamic_cast<wxWebView*>(frame->view()->hostWindow()->platformPageClient());
284 wxWebView* webKitWin = dynamic_cast<wxWebView*>(frame->view()->hostWindow()->platformPageClient());
296 wxWebView* webKitWin = dynamic_cast<wxWebView*>(frame->view()->hostWindow()->platformPageClient());
308 wxWebView* webKitWin = dynamic_cast<wxWebView*>(frame->view()->hostWindow()->platformPageClient());
331 wxWebView* webKitWin = dynamic_cast<wxWebView*>(frame->view()->hostWindow()->platformPageClient());
344 wxWebView* webKitWin = dynamic_cast<wxWebView*>(frame->view()->hostWindow()->platformPageClient());
357 wxWebView* webKitWin = dynamic_cast<wxWebView*>(frame->view()->hostWindow()->platformPageClient());
370 wxWebView* webKitWin = dynamic_cast<wxWebView*>(frame->view()->hostWindow()->platformPageClient());
494 wxWebView* webKitWin = dynamic_cast<wxWebView*>(frame->view()->hostWindow()->platformPageClient())
    [all...]
  /external/webkit/Source/WebCore/platform/
PopupMenuClient.h 33 class HostWindow;
67 virtual HostWindow* hostWindow() const = 0;
ScrollView.cpp 39 #include "HostWindow.h"
448 hostWindow()->delegatedScrollRequested(scrollPoint);
663 if (!hostWindow())
682 hostWindow()->invalidateWindow(updateRect, false /*immediate*/);
691 hostWindow()->invalidateContentsAndWindow(panScrollIconDirtyRect, false /*immediate*/);
709 hostWindow()->invalidateContentsAndWindow(horizontalOverhangRect, false /*immediate*/);
711 hostWindow()->invalidateContentsAndWindow(verticalOverhangRect, false /*immediate*/);
717 hostWindow()->invalidateWindow(IntRect(), true);
722 hostWindow()->scroll(scrollDelta, rectToScroll, clipRect);
728 hostWindow()->invalidateContentsForSlowScroll(updateRect, false)
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/API/C/win/
WKView.cpp 55 void WKViewSetParentWindow(WKViewRef viewRef, HWND hostWindow)
57 toImpl(viewRef)->setParentWindow(hostWindow);
  /external/webkit/Source/WebCore/platform/graphics/gtk/
GraphicsContext3DGtk.cpp 40 PassRefPtr<GraphicsContext3D> GraphicsContext3D::create(GraphicsContext3D::Attributes attributes, HostWindow* hostWindow, GraphicsContext3D::RenderStyle renderStyle)
42 // This implementation doesn't currently support rendering directly to the HostWindow.
50 RefPtr<GraphicsContext3D> context = adoptRef(new GraphicsContext3D(attributes, hostWindow, false));
55 GraphicsContext3D::GraphicsContext3D(GraphicsContext3D::Attributes attributes, HostWindow*, bool)
  /external/webkit/Source/WebCore/platform/graphics/mac/
GraphicsContext3DMac.mm 81 PassRefPtr<GraphicsContext3D> GraphicsContext3D::create(GraphicsContext3D::Attributes attrs, HostWindow* hostWindow, GraphicsContext3D::RenderStyle renderStyle)
83 // This implementation doesn't currently support rendering directly to the HostWindow.
86 RefPtr<GraphicsContext3D> context = adoptRef(new GraphicsContext3D(attrs, hostWindow, false));
90 GraphicsContext3D::GraphicsContext3D(GraphicsContext3D::Attributes attrs, HostWindow* hostWindow, bool)
108 UNUSED_PARAM(hostWindow);
  /external/webkit/Source/WebKit/mac/WebView/
WebDocument.h 71 @param hostWindow The host window for the document view.
74 - (void)viewWillMoveToHostWindow:(NSWindow *)hostWindow;
WebViewData.mm 104 [hostWindow release];
WebViewData.h 94 NSWindow *hostWindow;
  /external/webkit/Tools/DumpRenderTree/win/
UIDelegate.cpp 544 HWND hostWindow;
545 sender->hostWindow(reinterpret_cast<OLE_HANDLE*>(&hostWindow));
546 DestroyWindow(hostWindow);
553 HWND hostWindow;
554 sender->hostWindow(reinterpret_cast<OLE_HANDLE*>(&hostWindow));
555 SetForegroundWindow(hostWindow);
  /external/webkit/Source/WebCore/platform/wx/
WidgetWx.cpp 30 #include "HostWindow.h"
62 view->hostWindow()->setCursor(cursor);
  /external/webkit/Source/WebCore/rendering/
RenderMenuList.h 109 virtual HostWindow* hostWindow() const;
  /external/webkit/Source/WebKit/chromium/src/
AutoFillPopupMenuClient.h 98 virtual WebCore::HostWindow* hostWindow() const;

Completed in 483 milliseconds

1 2 3