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

  /external/webkit/Source/WebKit/chromium/public/
WebPopupMenu.h 35 #include "WebWidget.h"
41 class WebPopupMenu : public WebWidget {
WebWidget.h 49 class WebWidget {
51 // This method closes and deletes the WebWidget.
54 // Returns the current size of the WebWidget.
57 // Called to resize the WebWidget.
64 // Called to layout the WebWidget. This MUST be called before Paint,
68 // Called to paint the rectangular region within the WebWidget
72 // changes are made to the WebWidget (e.g., once events are
84 // Called to inform the WebWidget of a change in theme.
89 // Called to inform the WebWidget of an input event. Returns true if
93 // Called to inform the WebWidget that mouse capture was lost
    [all...]
WebWidgetClient.h 41 class WebWidget;
46 // Called when a region of the WebWidget needs to be re-painted.
49 // Called when a region of the WebWidget, given by clipRect, should be
56 // Called when a call to WebWidget::composite is required
59 // Called when a call to WebWidget::animate is required
69 // Called when the widget should be closed. WebWidget::close() should
WebViewClient.h 70 class WebWidget;
77 // Since a WebView is a WebWidget, a WebViewClient is a WebWidgetClient.
98 virtual WebWidget* createPopupMenu(WebPopupType) { return 0; }
99 virtual WebWidget* createPopupMenu(const WebPopupMenuInfo&) { return 0; }
WebView.h 37 #include "WebWidget.h"
57 class WebView : public WebWidget {
  /external/webkit/Tools/DumpRenderTree/chromium/
TestShell.h 111 void setFocus(WebKit::WebWidget*, bool enable);
188 WebKit::WebWidget* m_focusedWidget;
WebViewHost.h 71 void setWebWidget(WebKit::WebWidget*);
73 WebKit::WebWidget* webWidget() const;
114 virtual WebKit::WebWidget* createPopupMenu(WebKit::WebPopupType);
115 virtual WebKit::WebWidget* createPopupMenu(const WebKit::WebPopupMenuInfo&);
290 WebKit::WebWidget* m_webWidget;
TestShell.cpp 275 void TestShell::setFocus(WebWidget* widget, bool enable)
611 WebWidget* focusedWidget = m_focusedWidget;
612 if (window->webWidget() == m_focusedWidget)
WebViewHost.cpp 239 WebWidget* WebViewHost::createPopupMenu(WebPopupType)
244 WebWidget* WebViewHost::createPopupMenu(const WebPopupMenuInfo&)
653 WebSize widgetSize = webWidget()->size();
667 m_shell->setFocus(webWidget(), true);
672 m_shell->setFocus(webWidget(), false);
693 WebSize size = webWidget()->size();
734 webWidget()->resize(WebSize(width, height));
    [all...]
  /external/webkit/Source/WebKit/chromium/tests/
PopupMenuTest.cpp 123 class TestWebWidget : public WebWidget {
154 virtual WebWidget* createPopupMenu(WebPopupType) { return m_webPopupMenu.get(); }
  /external/webkit/Source/WebKit/chromium/src/
ChromeClientImpl.cpp 714 WebWidget* webwidget;
718 webwidget = m_webView->client()->createPopupMenu(popupInfo);
720 webwidget = m_webView->client()->createPopupMenu(
727 static_cast<WebPopupMenuImpl*>(webwidget)->Init(popupContainer, bounds);

Completed in 137 milliseconds