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

Unified Diff: Source/core/platform/graphics/harfbuzz/FontPlatformDataHarfBuzz.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/harfbuzz/FontPlatformDataHarfBuzz.cpp
diff --git a/Source/core/platform/graphics/harfbuzz/FontPlatformDataHarfBuzz.cpp b/Source/core/platform/graphics/harfbuzz/FontPlatformDataHarfBuzz.cpp
index 7a280e5d4bd6f5be478d93b0d617d6aa41d08e00..37dda90bf4155ae199eee998278427314769819b 100644
--- a/Source/core/platform/graphics/harfbuzz/FontPlatformDataHarfBuzz.cpp
+++ b/Source/core/platform/graphics/harfbuzz/FontPlatformDataHarfBuzz.cpp
@@ -257,17 +257,17 @@ HarfBuzzFace* FontPlatformData::harfBuzzFace() const
void FontPlatformData::getRenderStyleForStrike(const char* font, int sizeAndStyle)
{
- WebKit::WebFontRenderStyle style;
+ blink::WebFontRenderStyle style;
#if OS(ANDROID)
style.setDefaults();
#else
if (!font || !*font)
style.setDefaults(); // It's probably a webfont. Take the system defaults.
- else if (WebKit::Platform::current()->sandboxSupport())
- WebKit::Platform::current()->sandboxSupport()->getRenderStyleForStrike(font, sizeAndStyle, &style);
+ else if (blink::Platform::current()->sandboxSupport())
+ blink::Platform::current()->sandboxSupport()->getRenderStyleForStrike(font, sizeAndStyle, &style);
else
- WebKit::WebFontInfo::renderStyleForStrike(font, sizeAndStyle, &style);
+ blink::WebFontInfo::renderStyleForStrike(font, sizeAndStyle, &style);
#endif
style.toFontRenderStyle(&m_style);
« no previous file with comments | « Source/core/platform/graphics/gpu/SharedGraphicsContext3D.cpp ('k') | Source/core/platform/image-decoders/ImageDecoder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698