| Index: Source/core/platform/graphics/chromium/FontCacheChromiumLinux.cpp
|
| diff --git a/Source/core/platform/graphics/chromium/FontCacheChromiumLinux.cpp b/Source/core/platform/graphics/chromium/FontCacheChromiumLinux.cpp
|
| index 17d9af56b7b817164990ab83c96a8e4f523d3a60..5e39f460f9aed5926e54c7c8ec69ea20163d380f 100644
|
| --- a/Source/core/platform/graphics/chromium/FontCacheChromiumLinux.cpp
|
| +++ b/Source/core/platform/graphics/chromium/FontCacheChromiumLinux.cpp
|
| @@ -36,11 +36,11 @@ namespace WebCore {
|
|
|
| void FontCache::getFontFamilyForCharacter(UChar32 c, const char* preferredLocale, FontCache::SimpleFontFamily* family)
|
| {
|
| - WebKit::WebFontFamily webFamily;
|
| - if (WebKit::Platform::current()->sandboxSupport())
|
| - WebKit::Platform::current()->sandboxSupport()->getFontFamilyForCharacter(c, preferredLocale, &webFamily);
|
| + blink::WebFontFamily webFamily;
|
| + if (blink::Platform::current()->sandboxSupport())
|
| + blink::Platform::current()->sandboxSupport()->getFontFamilyForCharacter(c, preferredLocale, &webFamily);
|
| else
|
| - WebKit::WebFontInfo::familyForChar(c, preferredLocale, &webFamily);
|
| + blink::WebFontInfo::familyForChar(c, preferredLocale, &webFamily);
|
| family->name = String::fromUTF8(CString(webFamily.name));
|
| family->isBold = webFamily.isBold;
|
| family->isItalic = webFamily.isItalic;
|
|
|