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

1 2

  /external/chromium_org/third_party/WebKit/public/web/
WebPagePopup.h 35 #include "WebWidget.h"
41 class WebPagePopup : public WebWidget {
WebPopupMenu.h 35 #include "WebWidget.h"
41 class WebPopupMenu : public WebWidget {
WebHelperPlugin.h 35 #include "WebWidget.h"
43 class WebHelperPlugin : public WebWidget {
WebWidget.h 52 class WebWidget {
54 // This method closes and deletes the WebWidget.
57 // Returns the current size of the WebWidget.
66 // Called to resize the WebWidget.
73 // Called to notify the WebWidget of entering/exiting fullscreen mode. The
85 // Called to layout the WebWidget. This MUST be called before Paint,
89 // Called to toggle the WebWidget in or out of force compositing mode. This
93 // Called to notify the WebWidget that the widget has exited compositing
112 // Called to paint the rectangular region within the WebWidget
116 // changes are made to the WebWidget (e.g., once events ar
    [all...]
WebWidgetClient.h 45 class WebWidget;
51 // Called when a region of the WebWidget needs to be re-painted.
54 // Called when a region of the WebWidget, given by clipRect, should be
75 // Sometimes the WebWidget enters a state where it will generate a sequence
86 // Indicates to the embedder that the WebWidget is ready for additional
101 // Called when a call to WebWidget::animate is required
106 // was called, but before WebWidget::animate actually does a frame.
116 // Called when the widget should be closed. WebWidget::close() should
128 // then WebWidget::{will,Did}EnterFullScreen should bound resizing the
129 // WebWidget into fullscreen mode. Similarly, when exitFullScreen i
    [all...]
WebViewClient.h 81 class WebWidget;
92 // Since a WebView is a WebWidget, a WebViewClient is a WebWidgetClient.
117 virtual WebWidget* createPopupMenu(WebPopupType) { return 0; }
118 virtual WebWidget* createPopupMenu(const WebPopupMenuInfo&) { return 0; }
292 // After calling WebWidget::layout(), expect to get this notification
WebPlugin.h 39 #include "WebWidget.h"
139 virtual bool confirmComposition(const WebString& text, WebWidget::ConfirmCompositionBehavior selectionBehavior) { return false; }
WebView.h 39 #include "WebWidget.h"
70 class WebView : public WebWidget {
  /external/chromium_org/content/renderer/
render_widget_fullscreen.h 10 #include "third_party/WebKit/public/web/WebWidget.h"
23 virtual blink::WebWidget* CreateWebWidget();
render_widget_fullscreen.cc 8 #include "third_party/WebKit/public/web/WebWidget.h"
10 using blink::WebWidget;
33 WebWidget* RenderWidgetFullscreen::CreateWebWidget() {
render_widget_fullscreen_pepper.h 12 #include "third_party/WebKit/public/web/WebWidget.h"
73 virtual blink::WebWidget* CreateWebWidget() OVERRIDE;
render_widget.h 31 #include "third_party/WebKit/public/web/WebWidget.h"
77 // RenderWidget provides a communication bridge between a WebWidget and
91 // Creates a WebWidget based on the popup type.
92 static blink::WebWidget* CreateWebWidget(RenderWidget* render_widget);
109 blink::WebWidget* webwidget() const { return webwidget_; } function in class:content::RenderWidget
189 // Close the underlying WebWidget.
278 blink::WebWidget* web_widget,
290 // Paints the given rectangular region of the WebWidget into canvas (a
292 // must ensure that the given rect fits within the bounds of the WebWidget
    [all...]
render_widget_fullscreen_pepper.cc 26 #include "third_party/WebKit/public/web/WebWidget.h"
44 using blink::WebWidget;
133 // WebWidget that simply wraps the pepper plugin.
134 class PepperWidget : public WebWidget {
142 // WebWidget API
457 // Call Close on the base class to destroy the WebWidget instance.
482 WebWidget* RenderWidgetFullscreenPepper::CreateWebWidget() {
render_widget.cc 80 #include "third_party/WebKit/public/web/WebWidget.h"
102 using blink::WebWidget;
398 DCHECK(!webwidget_) << "Leaking our WebWidget!";
427 WebWidget* RenderWidget::CreateWebWidget(RenderWidget* render_widget) {
452 WebWidget* web_widget,
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebHelperPluginImpl.h 72 // WebWidget methods:
89 inline WebHelperPluginImpl* toWebHelperPluginImpl(WebWidget* widget)
WebPagePopupImpl.h 67 // WebWidget functions
99 inline WebPagePopupImpl* toWebPagePopupImpl(WebWidget* widget)
WebPopupMenuImpl.h 65 // WebWidget functions:
137 inline WebPopupMenuImpl* toWebPopupMenuImpl(WebWidget* widget)
  /external/chromium_org/content/public/test/
render_view_test.h 24 class WebWidget;
121 blink::WebWidget* GetWebWidget();
render_view_test.cc 354 blink::WebWidget* RenderViewTest::GetWebWidget() {
356 return impl->webwidget();
  /external/chromium_org/third_party/WebKit/public/testing/
WebTestProxy.h 86 class WebWidget;
116 void setWidget(blink::WebWidget*);
231 blink::WebWidget* webWidget();
235 blink::WebWidget* m_webWidget;
  /external/chromium_org/content/renderer/browser_plugin/
browser_plugin.h 23 #include "third_party/WebKit/public/web/WebWidget.h"
199 blink::WebWidget::ConfirmCompositionBehavior selectionBehavior) OVERRIDE;
browser_plugin.cc     [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
PopupMenuTest.cpp 156 virtual WebWidget* createPopupMenu(WebPopupType) { return m_webPopupMenu.get(); }
WebViewTest.cpp 51 #include "WebWidget.h"
156 virtual blink::WebWidget* createPopupMenu(blink::WebPopupType popupType) OVERRIDE
188 WebWidget* m_helperPluginWebWidget;
567 webView->confirmComposition(WebWidget::KeepSelection);
582 webView->confirmComposition(WebWidget::DoNotKeepSelection);
608 webView->confirmComposition(WebWidget::KeepSelection);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
WebTestProxy.cpp 427 void WebTestProxyBase::setWidget(WebWidget* widget)
432 WebWidget* WebTestProxyBase::webWidget()
531 webWidget()->layout();
533 WebSize viewSize = webWidget()->size();
586 webWidget()->paint(canvas(), deviceRect);
592 webWidget()->animate(0.0);
593 webWidget()->layout();
594 WebSize widgetSize = webWidget()->size();
627 WebSize pageSizeInPixels = webWidget()->size()
    [all...]

Completed in 492 milliseconds

1 2