Title: [149138] trunk/Source/WebCore
Revision
149138
Author
[email protected]
Date
2013-04-25 13:11:06 -0700 (Thu, 25 Apr 2013)

Log Message

Add definition of GlyphBufferGlyph for BlackBerry
https://bugs.webkit.org/show_bug.cgi?id=115183

Patch by Alberto Garcia <[email protected]> on 2013-04-25
Reviewed by Xan Lopez.

BlackBerry uses an unsigned int.

* platform/graphics/GlyphBuffer.h:
(WebCore):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (149137 => 149138)


--- trunk/Source/WebCore/ChangeLog	2013-04-25 20:02:55 UTC (rev 149137)
+++ trunk/Source/WebCore/ChangeLog	2013-04-25 20:11:06 UTC (rev 149138)
@@ -1,3 +1,15 @@
+2013-04-25  Alberto Garcia  <[email protected]>
+
+        Add definition of GlyphBufferGlyph for BlackBerry
+        https://bugs.webkit.org/show_bug.cgi?id=115183
+
+        Reviewed by Xan Lopez.
+
+        BlackBerry uses an unsigned int.
+
+        * platform/graphics/GlyphBuffer.h:
+        (WebCore):
+
 2013-04-25  Joseph Pecoraro  <[email protected]>
 
         ScriptExecutionContext log exception should include a column number

Modified: trunk/Source/WebCore/platform/graphics/GlyphBuffer.h (149137 => 149138)


--- trunk/Source/WebCore/platform/graphics/GlyphBuffer.h	2013-04-25 20:02:55 UTC (rev 149137)
+++ trunk/Source/WebCore/platform/graphics/GlyphBuffer.h	2013-04-25 20:11:06 UTC (rev 149138)
@@ -54,6 +54,8 @@
 typedef wchar_t GlyphBufferGlyph;
 #elif PLATFORM(QT)
 typedef quint32 GlyphBufferGlyph;
+#elif PLATFORM(BLACKBERRY)
+typedef unsigned GlyphBufferGlyph;
 #else
 typedef Glyph GlyphBufferGlyph;
 #endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to