Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(361)

Unified Diff: Source/core/platform/graphics/chromium/FontCacheChromiumLinux.cpp

Issue 61773005: Rename WebKit namespace to blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698