Commit 1ea19571 authored by joepeck@webkit.org's avatar joepeck@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):

git-svn-id: svn://svn.chromium.org/blink/trunk@93160 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent ad155dbc
2011-08-16 Joseph Pecoraro <joepeck@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 <senorblanco@chromium.org>
Canvas resizing can be slow
......@@ -400,7 +400,7 @@ static int CALLBACK traitsInFamilyEnumProc(CONST LOGFONT* logFont, CONST TEXTMET
}
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 @@ struct GetLastResortFallbackFontProcData {
FontCache* m_fontCache;
const FontDescription* m_fontDescription;
ShouldRetain m_shouldRetain;
FontCache::ShouldRetain m_shouldRetain;
wchar_t* m_fontName;
SimpleFontData* m_fontData;
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment