Title: [96692] trunk/Source/WebCore
Revision
96692
Author
[email protected]
Date
2011-10-05 04:24:20 -0700 (Wed, 05 Oct 2011)

Log Message

Shrink FontFallbackList.
https://bugs.webkit.org/show_bug.cgi?id=69093

Rubber-stamped by Antti Koivisto.

Workaround MSVC quirk by making enum bitfield "unsigned".

* platform/graphics/FontFallbackList.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (96691 => 96692)


--- trunk/Source/WebCore/ChangeLog	2011-10-05 11:19:39 UTC (rev 96691)
+++ trunk/Source/WebCore/ChangeLog	2011-10-05 11:24:20 UTC (rev 96692)
@@ -1,5 +1,16 @@
 2011-10-05  Andreas Kling  <[email protected]>
 
+        Shrink FontFallbackList.
+        https://bugs.webkit.org/show_bug.cgi?id=69093
+
+        Rubber-stamped by Antti Koivisto.
+
+        Workaround MSVC quirk by making enum bitfield "unsigned".
+
+        * platform/graphics/FontFallbackList.h:
+
+2011-10-05  Andreas Kling  <[email protected]>
+
         Shrink StyleRareNonInheritedData.
         https://bugs.webkit.org/show_bug.cgi?id=69331
 

Modified: trunk/Source/WebCore/platform/graphics/FontFallbackList.h (96691 => 96692)


--- trunk/Source/WebCore/platform/graphics/FontFallbackList.h	2011-10-05 11:19:39 UTC (rev 96691)
+++ trunk/Source/WebCore/platform/graphics/FontFallbackList.h	2011-10-05 11:24:20 UTC (rev 96692)
@@ -89,7 +89,7 @@
     RefPtr<FontSelector> m_fontSelector;
     mutable int m_familyIndex;
     unsigned short m_generation;
-    mutable Pitch m_pitch : 3;
+    mutable unsigned m_pitch : 3; // Pitch
     mutable bool m_loadingCustomFonts : 1;
 
     friend class Font;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to