Lines Matching refs:WebInspectorProxy
27 #include "WebInspectorProxy.h"
47 bool WebInspectorProxy::registerInspectorViewWindowClass()
58 wcex.lpfnWndProc = WebInspectorProxy::InspectorViewWndProc;
60 wcex.cbWndExtra = sizeof(WebInspectorProxy*);
72 LRESULT CALLBACK WebInspectorProxy::InspectorViewWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
76 if (WebInspectorProxy* inspectorView = reinterpret_cast<WebInspectorProxy*>(longPtr))
82 // Associate the WebInspectorProxy with the window.
90 LRESULT WebInspectorProxy::wndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
119 LRESULT WebInspectorProxy::onSizeEvent(HWND, UINT, WPARAM, LPARAM, bool&)
129 LRESULT WebInspectorProxy::onSetFocusEvent(HWND, UINT, WPARAM, LPARAM lParam, bool&)
136 LRESULT WebInspectorProxy::onMinMaxInfoEvent(HWND, UINT, WPARAM, LPARAM lParam, bool&)
145 LRESULT WebInspectorProxy::onCloseEvent(HWND, UINT, WPARAM, LPARAM, bool&)
153 WebPageProxy* WebInspectorProxy::platformCreateInspectorPage()
164 void WebInspectorProxy::platformOpen()
176 void WebInspectorProxy::platformClose()
190 void WebInspectorProxy::platformInspectedURLChanged(const String& urlString)
197 String WebInspectorProxy::inspectorPageURL() const