Title: [111085] trunk/Source/WebCore
Revision
111085
Author
leo.y...@torchmobile.com.cn
Date
2012-03-16 16:27:03 -0700 (Fri, 16 Mar 2012)

Log Message

[BlackBerry] Upstream the BlackBerry change to platform/Widget.h
https://bugs.webkit.org/show_bug.cgi?id=81304

Reviewed by Rob Buis.

typedefs of PlatformWidget and PlatformPageClient for the BlackBerry.

* platform/Widget.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (111084 => 111085)


--- trunk/Source/WebCore/ChangeLog	2012-03-16 23:22:37 UTC (rev 111084)
+++ trunk/Source/WebCore/ChangeLog	2012-03-16 23:27:03 UTC (rev 111085)
@@ -1,3 +1,14 @@
+2012-03-16  Leo Yang  <leo.y...@torchmobile.com.cn>
+
+        [BlackBerry] Upstream the BlackBerry change to platform/Widget.h
+        https://bugs.webkit.org/show_bug.cgi?id=81304
+
+        Reviewed by Rob Buis.
+
+        typedefs of PlatformWidget and PlatformPageClient for the BlackBerry.
+
+        * platform/Widget.h:
+
 2012-03-16  David Barton  <dbar...@mathscribe.com>
 
         MathML internals - factor code for almost anonymous blocks

Modified: trunk/Source/WebCore/platform/Widget.h (111084 => 111085)


--- trunk/Source/WebCore/platform/Widget.h	2012-03-16 23:22:37 UTC (rev 111084)
+++ trunk/Source/WebCore/platform/Widget.h	2012-03-16 23:27:03 UTC (rev 111085)
@@ -68,6 +68,10 @@
 typedef QObject* PlatformWidget;
 #endif
 
+#if PLATFORM(BLACKBERRY)
+typedef void* PlatformWidget;
+#endif
+
 #if PLATFORM(WX)
 class wxWindow;
 typedef wxWindow* PlatformWidget;
@@ -83,6 +87,9 @@
 #if PLATFORM(QT)
 class QWebPageClient;
 typedef QWebPageClient* PlatformPageClient;
+#elif PLATFORM(BLACKBERRY)
+#include "PageClientBlackBerry.h"
+typedef PageClientBlackBerry* PlatformPageClient;
 #else
 typedef PlatformWidget PlatformPageClient;
 #endif
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to