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

1 2

  /external/webkit/Tools/WebKitAPITest/
HostWindow.h 33 class HostWindow {
34 WTF_MAKE_NONCOPYABLE(HostWindow);
36 HostWindow();
37 ~HostWindow();
HostWindow.cpp 26 #include "HostWindow.h"
30 static LPCWSTR hostWindowClassName = L"HostWindow";
32 HostWindow::HostWindow()
37 bool HostWindow::initialize()
44 HostWindow::~HostWindow()
51 RECT HostWindow::clientRect() const
61 void HostWindow::registerWindowClass()
79 LRESULT HostWindow::wndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam
    [all...]
  /external/webkit/Source/WebCore/platform/chromium/
FramelessScrollViewClient.h 34 #include "HostWindow.h"
39 class FramelessScrollViewClient : public HostWindow {
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;
PopupMenuChromium.cpp 106 virtual HostWindow* hostWindow() const;
784 HostWindow* PopupListBox::hostWindow() const
787 // HostWindow. FrameView::hostWindow() works similarly.
788 return parent() ? parent()->hostWindow() : 0;
    [all...]
  /external/webkit/Source/WebCore/platform/
HostWindow.h 35 class HostWindow {
36 WTF_MAKE_NONCOPYABLE(HostWindow); WTF_MAKE_FAST_ALLOCATED;
38 HostWindow() { }
39 virtual ~HostWindow() { }
PopupMenuClient.h 33 class HostWindow;
67 virtual HostWindow* hostWindow() const = 0;
ScrollView.h 53 class HostWindow;
77 virtual HostWindow* hostWindow() const = 0;
  /external/webkit/Tools/WebKitAPITest/tests/
WebViewDestruction.cpp 27 #include "HostWindow.h"
53 static void createAndInitializeWebView(COMPtr<IWebView>& outWebView, HostWindow& window, HWND& viewWindow)
121 HostWindow window;
132 HostWindow window;
144 HostWindow window;
156 HostWindow window;
169 HostWindow window;
182 HostWindow window;
194 HostWindow window;
207 HostWindow window
    [all...]
  /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/gpu/
SharedGraphicsContext3D.h 58 class HostWindow;
68 static PassRefPtr<SharedGraphicsContext3D> create(HostWindow*);
SharedGraphicsContext3D.cpp 64 PassRefPtr<SharedGraphicsContext3D> SharedGraphicsContext3D::create(HostWindow* hostWindow)
71 RefPtr<GraphicsContext3D> context = GraphicsContext3D::create(attr, hostWindow);
  /external/webkit/Source/WebCore/rendering/
RenderMenuList.h 109 virtual HostWindow* hostWindow() const;
RenderTextControlSingleLine.h 142 virtual HostWindow* hostWindow() const;
RenderMenuList.cpp 464 HostWindow* RenderMenuList::hostWindow() const
466 return document()->view()->hostWindow();
  /external/webkit/Source/WebCore/page/
Chrome.h 27 #include "HostWindow.h"
60 class Chrome : public HostWindow {
67 // HostWindow methods.
FrameView.h 61 virtual HostWindow* hostWindow() const;
  /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/chromium/src/
AutoFillPopupMenuClient.h 98 virtual WebCore::HostWindow* hostWindow() const;
AutoFillPopupMenuClient.cpp 251 HostWindow* AutoFillPopupMenuClient::hostWindow() const
253 return m_textField->document()->view()->hostWindow();
GraphicsContext3DChromium.cpp 103 bool GraphicsContext3DInternal::initialize(GraphicsContext3D::Attributes attrs, HostWindow* hostWindow, bool renderDirectlyToHostWindow)
116 Chrome* chrome = static_cast<Chrome*>(hostWindow);
929 GraphicsContext3D::GraphicsContext3D(GraphicsContext3D::Attributes, HostWindow*, bool)
937 PassRefPtr<GraphicsContext3D> GraphicsContext3D::create(GraphicsContext3D::Attributes attrs, HostWindow* hostWindow, GraphicsContext3D::RenderStyle renderStyle)
    [all...]
  /external/webkit/Source/WebKit/chromium/tests/
PopupMenuTest.cpp 97 virtual HostWindow* hostWindow() const { return 0; }
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsContext3D.h 90 class HostWindow;
455 static PassRefPtr<GraphicsContext3D> create(Attributes, HostWindow*, RenderStyle = RenderOffscreen);
824 GraphicsContext3D(Attributes attrs, HostWindow* hostWindow, bool renderDirectlyToHostWindow);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsContext3DQt.cpp 28 #include "HostWindow.h"
158 GraphicsContext3DInternal(GraphicsContext3D::Attributes attrs, HostWindow* hostWindow);
260 HostWindow* m_hostWindow;
294 GraphicsContext3DInternal::GraphicsContext3DInternal(GraphicsContext3D::Attributes attrs, HostWindow* hostWindow)
296 , m_hostWindow(hostWindow)
607 PassRefPtr<GraphicsContext3D> GraphicsContext3D::create(GraphicsContext3D::Attributes attrs, HostWindow* hostWindow, GraphicsContext3D::RenderStyle renderStyle)
609 // This implementation doesn't currently support rendering directly to the HostWindow
    [all...]

Completed in 549 milliseconds

1 2