Title: [89235] trunk/Source/WebCore
Revision
89235
Author
[email protected]
Date
2011-06-20 02:18:38 -0700 (Mon, 20 Jun 2011)

Log Message

2011-06-20  Yuta Kitamura  <[email protected]>

        Unreviewed build fix for Chromium Clang builders.

        * platform/graphics/FontFallbackList.h: Declare SVGTextRunRenderingContext as class, not struct.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (89234 => 89235)


--- trunk/Source/WebCore/ChangeLog	2011-06-20 08:22:44 UTC (rev 89234)
+++ trunk/Source/WebCore/ChangeLog	2011-06-20 09:18:38 UTC (rev 89235)
@@ -1,3 +1,9 @@
+2011-06-20  Yuta Kitamura  <[email protected]>
+
+        Unreviewed build fix for Chromium Clang builders.
+
+        * platform/graphics/FontFallbackList.h: Declare SVGTextRunRenderingContext as class, not struct.
+
 2011-06-20  MORITA Hajime <[email protected]>
 
         Unreviewed GTK build fix.

Modified: trunk/Source/WebCore/platform/graphics/FontFallbackList.h (89234 => 89235)


--- trunk/Source/WebCore/platform/graphics/FontFallbackList.h	2011-06-20 08:22:44 UTC (rev 89234)
+++ trunk/Source/WebCore/platform/graphics/FontFallbackList.h	2011-06-20 09:18:38 UTC (rev 89235)
@@ -57,7 +57,7 @@
     const GlyphPages& glyphPages() const { return m_pages; }
 
 private:
-    friend struct SVGTextRunRenderingContext;
+    friend class SVGTextRunRenderingContext;
     void setGlyphPageZero(GlyphPageTreeNode* pageZero) { m_pageZero = pageZero; }
     void setGlyphPages(const GlyphPages& pages) { m_pages = pages; }
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to