Title: [148864] trunk/Source/WebCore
Revision
148864
Author
[email protected]
Date
2013-04-22 01:59:18 -0700 (Mon, 22 Apr 2013)

Log Message

Gradient: add PlatformGradient definition for BlackBerry
https://bugs.webkit.org/show_bug.cgi?id=114727

Patch by Alberto Garcia <[email protected]> on 2013-04-22
Reviewed by Carlos Garcia Campos.

* platform/graphics/Gradient.h:
(Graphics):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (148863 => 148864)


--- trunk/Source/WebCore/ChangeLog	2013-04-22 08:32:28 UTC (rev 148863)
+++ trunk/Source/WebCore/ChangeLog	2013-04-22 08:59:18 UTC (rev 148864)
@@ -1,3 +1,13 @@
+2013-04-22  Alberto Garcia  <[email protected]>
+
+        Gradient: add PlatformGradient definition for BlackBerry
+        https://bugs.webkit.org/show_bug.cgi?id=114727
+
+        Reviewed by Carlos Garcia Campos.
+
+        * platform/graphics/Gradient.h:
+        (Graphics):
+
 2013-04-22  Andrei Bucur  <[email protected]>
 
         Use DOM ordering for list counts

Modified: trunk/Source/WebCore/platform/graphics/Gradient.h (148863 => 148864)


--- trunk/Source/WebCore/platform/graphics/Gradient.h	2013-04-22 08:32:28 UTC (rev 148863)
+++ trunk/Source/WebCore/platform/graphics/Gradient.h	2013-04-22 08:59:18 UTC (rev 148864)
@@ -57,6 +57,15 @@
 #elif PLATFORM(WX)
 class wxGraphicsBrush;
 typedef wxGraphicsBrush* PlatformGradient;
+#elif PLATFORM(BLACKBERRY)
+namespace BlackBerry {
+namespace Platform {
+namespace Graphics {
+class Gradient;
+}
+}
+}
+typedef BlackBerry::Platform::Graphics::Gradient* PlatformGradient;
 #else
 typedef void* PlatformGradient;
 #endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to