Title: [93160] trunk/Source/WebCore
Revision
93160
Author
joep...@webkit.org
Date
2011-08-16 14:39:32 -0700 (Tue, 16 Aug 2011)

Log Message

Unreviewed Chromium Windows build fix after r93140. Take 4.

Namespace the now public enum as FontCache::ShouldRetain.

* platform/graphics/chromium/FontCacheChromiumWin.cpp:
(WebCore::GetLastResortFallbackFontProcData::GetLastResortFallbackFontProcData):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (93159 => 93160)


--- trunk/Source/WebCore/ChangeLog	2011-08-16 21:35:05 UTC (rev 93159)
+++ trunk/Source/WebCore/ChangeLog	2011-08-16 21:39:32 UTC (rev 93160)
@@ -1,3 +1,11 @@
+2011-08-16  Joseph Pecoraro  <joep...@webkit.org>
+
+        Unreviewed Chromium Windows build fix after r93140. Take 4.
+        Namespace the now public enum as FontCache::ShouldRetain.
+
+        * platform/graphics/chromium/FontCacheChromiumWin.cpp:
+        (WebCore::GetLastResortFallbackFontProcData::GetLastResortFallbackFontProcData):
+
 2011-08-15  Stephen White  <senorbla...@chromium.org>
 
         Canvas resizing can be slow

Modified: trunk/Source/WebCore/platform/graphics/chromium/FontCacheChromiumWin.cpp (93159 => 93160)


--- trunk/Source/WebCore/platform/graphics/chromium/FontCacheChromiumWin.cpp	2011-08-16 21:35:05 UTC (rev 93159)
+++ trunk/Source/WebCore/platform/graphics/chromium/FontCacheChromiumWin.cpp	2011-08-16 21:39:32 UTC (rev 93160)
@@ -400,7 +400,7 @@
 }
 
 struct GetLastResortFallbackFontProcData {
-    GetLastResortFallbackFontProcData(FontCache* fontCache, const FontDescription* fontDescription, ShouldRetain shouldRetain, wchar_t* fontName)
+    GetLastResortFallbackFontProcData(FontCache* fontCache, const FontDescription* fontDescription, FontCache::ShouldRetain shouldRetain, wchar_t* fontName)
         : m_fontCache(fontCache)
         , m_fontDescription(fontDescription)
         , m_shouldRetain(shouldRetain)
@@ -411,7 +411,7 @@
 
     FontCache* m_fontCache;
     const FontDescription* m_fontDescription;
-    ShouldRetain m_shouldRetain;
+    FontCache::ShouldRetain m_shouldRetain;
     wchar_t* m_fontName;
     SimpleFontData* m_fontData;
 };
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to