HomeSort by relevance Sort by last modified time
    Searched full:webwidget (Results 1 - 25 of 42) sorted by null

1 2

  /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_view_mouse_lock_dispatcher.cc 12 #include "third_party/WebKit/public/web/WebWidget.h"
62 if (succeeded && render_view_impl_->webwidget())
63 render_view_impl_->webwidget()->mouseCaptureLost();
render_widget_fullscreen_pepper.h 12 #include "third_party/WebKit/public/web/WebWidget.h"
65 virtual blink::WebWidget* CreateWebWidget() OVERRIDE;
external_popup_menu_browsertest.cc 60 view()->webwidget()->resize(blink::WebSize(500, 500));
61 view()->webwidget()->setFocus(true);
176 view()->webwidget()->resize(blink::WebSize(500, 500));
177 view()->webwidget()->setFocus(true);
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
372 // Call Close on the base class to destroy the WebWidget instance.
383 WebWidget* RenderWidgetFullscreenPepper::CreateWebWidget() {
render_widget.h 35 #include "third_party/WebKit/public/web/WebWidget.h"
86 // RenderWidget provides a communication bridge between a WebWidget and
100 // Creates a WebWidget based on the popup type.
101 static blink::WebWidget* CreateWebWidget(RenderWidget* render_widget);
105 blink::WebWidget* webwidget() const { return webwidget_; } function in class:content::RenderWidget
203 // Close the underlying WebWidget.
333 blink::WebWidget* web_widget,
533 // Check whether the WebWidget has any touch event handlers registered
537 // Check whether the WebWidget has any touch event handlers registered
    [all...]
  /external/chromium_org/third_party/WebKit/public/web/
WebWidget.h 57 class WebWidget {
59 // This method closes and deletes the WebWidget.
62 // Returns the current size of the WebWidget.
71 // Called to resize the WebWidget.
85 // Called to notify the WebWidget of entering/exiting fullscreen mode. The
107 // Called to layout the WebWidget. This MUST be called before Paint,
111 // Called to paint the rectangular region within the WebWidget
115 // changes are made to the WebWidget (e.g., once events are
130 // Indicates that the compositing surface associated with this WebWidget is
134 // Called to inform the WebWidget of a change in theme
    [all...]
WebWidgetClient.h 45 class WebWidget;
51 // Called when a region of the WebWidget needs to be re-painted.
67 // Sometimes the WebWidget enters a state where it will generate a sequence
78 // Indicates to the embedder that the WebWidget is ready for additional
93 // Called when a call to WebWidget::animate is required
103 // Called when the widget should be closed. WebWidget::close() should
115 // then WebWidget::{will,Did}EnterFullScreen should bound resizing the
116 // WebWidget into fullscreen mode. Similarly, when exitFullScreen is
117 // called, WebWidget::{will,Did}ExitFullScreen should bound resizing the
118 // WebWidget out of fullscreen mode
    [all...]
WebPagePopup.h 35 #include "WebWidget.h"
41 class WebPagePopup : public WebWidget {
WebPopupMenu.h 35 #include "WebWidget.h"
41 class WebPopupMenu : public WebWidget {
WebCompositionUnderline.h 38 // Class WebCompositionUnderline is intended to be used with WebWidget's
WebViewClient.h 70 class WebWidget;
79 // Since a WebView is a WebWidget, a WebViewClient is a WebWidgetClient.
103 virtual WebWidget* createPopupMenu(WebPopupType) { return 0; }
104 virtual WebWidget* createPopupMenu(const WebPopupMenuInfo&) { return 0; }
203 // After calling WebWidget::layout(), expect to get this notification
WebPlugin.h 40 #include "WebWidget.h"
148 virtual bool confirmComposition(const WebString& text, WebWidget::ConfirmCompositionBehavior selectionBehavior) { return false; }
  /external/chromium_org/mojo/services/html_viewer/
weblayertreeview_impl.h 23 class WebWidget;
43 void set_widget(blink::WebWidget* widget) { widget_ = widget; }
115 blink::WebWidget* widget_;
  /external/chromium_org/third_party/WebKit/Source/web/
WebPagePopupImpl.h 70 // WebWidget functions
114 DEFINE_TYPE_CASTS(WebPagePopupImpl, WebWidget, widget, widget->isPagePopup(), widget.isPagePopup());
PageWidgetDelegate.h 35 #include "public/web/WebWidget.h"
WebPopupMenuImpl.h 62 // WebWidget functions:
137 DEFINE_TYPE_CASTS(WebPopupMenuImpl, WebWidget, widget, widget->isPopupMenu(), widget.isPopupMenu());
PopupContainer.cpp 150 // Move WebWidget upwards if necessary.
417 // parent WebWidget.
488 WebWidget* webwidget = webView->client()->createPopupMenu(WebPopupTypeSelect);
489 if (!webwidget)
495 toWebPopupMenuImpl(webwidget)->initialize(this, bounds);
WebPopupMenuImpl.cpp 69 // WebWidget ------------------------------------------------------------------
164 // WebWidget -------------------------------------------------------------------
  /external/chromium_org/content/renderer/gpu/
render_widget_compositor_unittest.cc 19 class MockWebWidget : public blink::WebWidget {
render_widget_compositor.cc 42 #include "third_party/WebKit/public/web/WebWidget.h"
782 widget_->webwidget()->beginFrame(web_begin_frame_args);
786 widget_->webwidget()->layout();
793 widget_->webwidget()->applyViewportDeltas(
826 widget_->webwidget()->didCommitFrameToCompositor();
  /external/chromium_org/content/public/test/
render_view_test.h 25 class WebWidget;
130 blink::WebWidget* GetWebWidget();
  /external/chromium_org/content/shell/renderer/test_runner/
web_test_proxy.h 66 class WebWidget;
100 void set_widget(blink::WebWidget* widget) { web_widget_ = widget; }
256 blink::WebWidget* web_widget() const { return web_widget_; }
260 blink::WebWidget* web_widget_;
  /external/chromium_org/content/renderer/browser_plugin/
browser_plugin.h 18 #include "third_party/WebKit/public/web/WebWidget.h"
128 blink::WebWidget::ConfirmCompositionBehavior selectionBehavior) OVERRIDE;

Completed in 2131 milliseconds

1 2