HomeSort by relevance Sort by last modified time
    Searched refs:WebWidget (Results 1 - 25 of 26) 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 {
WebWidget.h 53 class WebWidget {
55 // This method closes and deletes the WebWidget.
58 // Returns the current size of the WebWidget.
67 // Called to resize the WebWidget.
81 // Called to notify the WebWidget of entering/exiting fullscreen mode. The
93 // Called to layout the WebWidget. This MUST be called before Paint,
97 // Called to paint the rectangular region within the WebWidget
101 // changes are made to the WebWidget (e.g., once events are
116 // Indicates that the compositing surface associated with this WebWidget is
120 // Called to inform the WebWidget of a change in theme
    [all...]
WebViewClient.h 72 class WebWidget;
81 // Since a WebView is a WebWidget, a WebViewClient is a WebWidgetClient.
106 virtual WebWidget* createPopupMenu(WebPopupType) { return 0; }
107 virtual WebWidget* createPopupMenu(const WebPopupMenuInfo&) { return 0; }
204 // After calling WebWidget::layout(), expect to get this notification
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
71 // Sometimes the WebWidget enters a state where it will generate a sequence
82 // Indicates to the embedder that the WebWidget is ready for additional
97 // Called when a call to WebWidget::animate is required
107 // Called when the widget should be closed. WebWidget::close() should
119 // then WebWidget::{will,Did}EnterFullScreen should bound resizing the
120 // WebWidget into fullscreen mode. Similarly, when exitFullScreen is
121 // called, WebWidget::{will,Did}ExitFullScreen should bound resizing th
    [all...]
WebPlugin.h 39 #include "WebWidget.h"
139 virtual bool confirmComposition(const WebString& text, WebWidget::ConfirmCompositionBehavior selectionBehavior) { return false; }
WebView.h 41 #include "WebWidget.h"
69 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;
32 WebWidget* RenderWidgetFullscreen::CreateWebWidget() {
render_widget_fullscreen_pepper.h 12 #include "third_party/WebKit/public/web/WebWidget.h"
65 virtual blink::WebWidget* CreateWebWidget() OVERRIDE;
render_widget.h 33 #include "third_party/WebKit/public/web/WebWidget.h"
79 // RenderWidget provides a communication bridge between a WebWidget and
93 // Creates a WebWidget based on the popup type.
94 static blink::WebWidget* CreateWebWidget(RenderWidget* render_widget);
98 blink::WebWidget* webwidget() const { return webwidget_; } function in class:content::RenderWidget
193 // Close the underlying WebWidget.
304 blink::WebWidget* web_widget,
489 // Check whether the WebWidget has any touch event handlers registered
493 // Check whether the WebWidget has any touch event handlers registered
    [all...]
render_widget_fullscreen_pepper.cc 25 #include "third_party/WebKit/public/web/WebWidget.h"
43 using blink::WebWidget;
132 // WebWidget that simply wraps the pepper plugin.
135 class PepperWidget : public WebWidget {
143 // WebWidget API
373 // Call Close on the base class to destroy the WebWidget instance.
384 WebWidget* RenderWidgetFullscreenPepper::CreateWebWidget() {
render_widget.cc 86 #include "third_party/WebKit/public/web/WebWidget.h"
109 using blink::WebWidget;
172 // and webwidget coordinates.
204 // Widget rect as passed to webwidget.
411 DCHECK(!webwidget_) << "Leaking our WebWidget!";
432 WebWidget* RenderWidget::CreateWebWidget(RenderWidget* render_widget) {
455 WebWidget* web_widget,
662 webwidget()->resizePinchViewport(gfx::Size(
    [all...]
render_view_impl.cc 301 using blink::WebWidget;
503 explicit WebWidgetLockTarget(blink::WebWidget* webwidget)
504 : webwidget_(webwidget) {}
519 // The WebWidget handles mouse lock in WebKit's handleInputEvent().
524 blink::WebWidget* webwidget_;
    [all...]
render_view_impl.h 402 virtual blink::WebWidget* createPopupMenu(blink::WebPopupType popup_type);
    [all...]
  /external/chromium_org/content/public/test/
render_view_test.h 23 class WebWidget;
128 blink::WebWidget* GetWebWidget();
render_view_test.cc 387 blink::WebWidget* RenderViewTest::GetWebWidget() {
389 return impl->webwidget();
  /external/chromium_org/third_party/WebKit/Source/web/
WebPagePopupImpl.h 71 // WebWidget functions
112 DEFINE_TYPE_CASTS(WebPagePopupImpl, WebWidget, widget, widget->isPagePopup(), widget.isPagePopup());
WebPopupMenuImpl.h 66 // WebWidget functions:
145 DEFINE_TYPE_CASTS(WebPopupMenuImpl, WebWidget, widget, widget->isPopupMenu(), widget.isPopupMenu());
PopupContainer.cpp 152 // Move WebWidget upwards if necessary.
403 // parent WebWidget.
474 WebWidget* webwidget = webView->client()->createPopupMenu(WebPopupTypeSelect);
475 if (!webwidget)
481 toWebPopupMenuImpl(webwidget)->initialize(this, bounds);
  /external/chromium_org/content/shell/renderer/test_runner/
web_test_proxy.h 64 class WebWidget;
96 void set_widget(blink::WebWidget* widget) { web_widget_ = widget; }
250 blink::WebWidget* web_widget() const { return web_widget_; }
254 blink::WebWidget* web_widget_;
  /external/chromium_org/content/renderer/browser_plugin/
browser_plugin.h 18 #include "third_party/WebKit/public/web/WebWidget.h"
162 blink::WebWidget::ConfirmCompositionBehavior selectionBehavior) OVERRIDE;
browser_plugin.cc 913 blink::WebWidget::ConfirmCompositionBehavior selectionBehavior) {
916 bool keep_selection = (selectionBehavior == blink::WebWidget::KeepSelection);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
PopupMenuTest.cpp 165 virtual WebWidget* createPopupMenu(WebPopupType) { return m_webPopupMenu.get(); }
WebViewTest.cpp 67 #include "public/web/WebWidget.h"
574 webView->confirmComposition(WebWidget::KeepSelection);
589 webView->confirmComposition(WebWidget::DoNotKeepSelection);
616 webView->confirmComposition(WebWidget::KeepSelection);
    [all...]

Completed in 526 milliseconds

1 2