diff options
Diffstat (limited to 'Tools/TestWebKitAPI/PlatformWebView.h')
-rw-r--r-- | Tools/TestWebKitAPI/PlatformWebView.h | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/Tools/TestWebKitAPI/PlatformWebView.h b/Tools/TestWebKitAPI/PlatformWebView.h index 653a17cca..3eb791a19 100644 --- a/Tools/TestWebKitAPI/PlatformWebView.h +++ b/Tools/TestWebKitAPI/PlatformWebView.h @@ -47,10 +47,21 @@ typedef HWND PlatformWindow; typedef WKViewRef PlatformWKView; typedef GtkWidget *PlatformWindow; #elif PLATFORM(EFL) -typedef struct _Evas_Object Evas_Object; typedef struct _Ecore_Evas Ecore_Evas; +#if USE(EO) +typedef struct _Eo Evas_Object; +#else +typedef struct _Evas_Object Evas_Object; +#endif typedef Evas_Object* PlatformWKView; typedef Ecore_Evas* PlatformWindow; +#elif PLATFORM(QT) +QT_BEGIN_NAMESPACE +class QQuickView; +QT_END_NAMESPACE +class QQuickWebView; +typedef QQuickWebView* PlatformWKView; +typedef QQuickView* PlatformWindow; #endif namespace TestWebKitAPI { |