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

  /external/webkit/Source/WebCore/platform/chromium/
PlatformWidget.h 36 // PlatformWidget is an opaque identifier corresponding to whatever native
37 // view type the embedder may use. PlatformWidget CANNOT be assumed to be
40 typedef intptr_t PlatformWidget;
WidgetChromium.cpp 40 Widget::Widget(PlatformWidget widget)
  /external/webkit/Source/WebCore/platform/graphics/gstreamer/
PlatformVideoWindow.h 46 PlatformWidget window() const { return m_window; }
48 PlatformWidget window() const { return m_window.get(); }
54 PlatformWidget m_videoWindow;
56 PlatformWidget m_window;
PlatformVideoWindowMac.mm 43 m_videoWindow = static_cast<PlatformWidget>(g_value_get_pointer(gst_structure_get_value(message->structure, "nsview")));
  /external/webkit/Source/WebCore/platform/wx/
WidgetWx.cpp 40 Widget::Widget(PlatformWidget widget)
52 if (PlatformWidget widget = platformWidget())
67 if (PlatformWidget widget = platformWidget())
73 if (PlatformWidget widget = platformWidget())
79 if (PlatformWidget widget = platformWidget())
87 if (PlatformWidget widget = platformWidget()
    [all...]
  /external/webkit/Source/WebKit/efl/WebCoreSupport/
FullscreenVideoControllerEfl.h 83 PlatformWidget* m_window;
84 PlatformWidget* m_hudWindow;
85 PlatformWidget* m_timeHScale;
86 PlatformWidget* m_timeLabel;
87 PlatformWidget* m_volumeButton;
  /external/webkit/Source/WebCore/platform/
Widget.h 35 #include "PlatformWidget.h"
55 typedef NSView *PlatformWidget;
60 typedef WebCoreViewBridge* PlatformWidget;
65 typedef HWND PlatformWidget;
71 typedef GtkWidget* PlatformWidget;
78 typedef QWidget* PlatformWidget;
83 typedef wxWindow* PlatformWidget;
88 typedef BView* PlatformWidget;
92 typedef void* PlatformWidget;
99 typedef Evas_Object* PlatformWidget;
    [all...]
Widget.cpp 36 void Widget::init(PlatformWidget widget)
  /external/webkit/Source/WebCore/plugins/
PluginViewBase.h 51 PluginViewBase(PlatformWidget widget = 0) : Widget(widget) { }
PluginView.h 63 typedef PlatformWidget PlatformPluginWidget;
436 PlatformPluginWidget platformPluginWidget() const { return platformWidget(); }
  /external/webkit/Source/WebCore/platform/brew/
WidgetBrew.cpp 36 Widget::Widget(PlatformWidget widget)
  /external/webkit/Source/WebCore/platform/haiku/
WidgetHaiku.cpp 41 AutoPlatformWidgetLocker(PlatformWidget widget)
60 PlatformWidget m_widget;
63 Widget::Widget(PlatformWidget widget)
105 AutoPlatformWidgetLocker locker(platformWidget());
106 if (locker.isLocked() && platformWidget()->IsHidden())
107 platformWidget()->Show();
116 AutoPlatformWidgetLocker locker(platformWidget());
117 if (locker.isLocked() && !platformWidget()->IsHidden())
118 platformWidget()->Hide();
  /external/webkit/Source/WebCore/platform/win/
WidgetWin.cpp 44 Widget::Widget(PlatformWidget widget)
  /external/webkit/Source/WebCore/platform/android/
WidgetAndroid.cpp 39 Widget::Widget(PlatformWidget widget)
52 if (!platformWidget())
54 return platformWidget()->getBounds();
65 if (!platformWidget())
67 platformWidget()->draw(ctx, r);
72 Release(platformWidget());
77 Retain(platformWidget());
98 // platformWidget() is 0 when called from Scrollbar
99 if (!platformWidget())
101 platformWidget()->setLocation(rect.x(), rect.y())
    [all...]
  /external/webkit/Source/WebCore/platform/gtk/
WidgetGtk.cpp 44 Widget::Widget(PlatformWidget widget)
58 gtk_widget_grab_focus(platformWidget() ? platformWidget() : GTK_WIDGET(root()->hostWindow()->platformPageClient()));
73 if (isParentVisible() && platformWidget())
74 gtk_widget_show(platformWidget());
81 if (isParentVisible() && platformWidget())
82 gtk_widget_hide(platformWidget());
91 if (!platformWidget())
94 // See if the platformWidget has a webkit-widget-is-selected property
96 GParamSpec* spec = g_object_class_find_property(G_OBJECT_GET_CLASS(platformWidget()),
    [all...]
  /external/webkit/Source/WebCore/plugins/mac/
PluginViewMac.mm 102 static inline WindowRef nativeWindowFor(PlatformWidget widget)
118 static inline CGContextRef cgHandleFor(PlatformWidget widget)
131 static inline IntPoint topLevelOffsetFor(PlatformWidget widget)
135 PlatformWidget topLevel = widget->window();
141 PlatformWidget toplevel = wxGetTopLevelParent(widget);
  /external/webkit/Source/WebKit/haiku/WebCoreSupport/
ChromeClientHaiku.cpp 301 return PlatformWidget();
  /external/webkit/Source/WebCore/platform/efl/
WidgetEfl.cpp 152 Widget::Widget(PlatformWidget widget)
277 if (!platformWidget())
280 evas_object_show(platformWidget());
285 if (!platformWidget())
288 evas_object_hide(platformWidget());
337 // FIXME: study platformWidget() and use it
338 // FIXME: right now platformWidget() requires implementing too much
  /external/webkit/Source/WebKit/android/WebCoreSupport/
ChromeClientAndroid.cpp 139 const WebCoreViewBridge* bridge = frameView->platformWidget();
184 const WebCoreViewBridge* bridge = frame->view()->platformWidget();
343 PlatformWidget viewBridge = view->platformWidget();

Completed in 707 milliseconds