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

Unified Diff: Source/web/win/WebFontRendering.cpp

Issue 1083093004: Removing unnecessary blink::prefix (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: trybot fixing Created 5 years, 8 months 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
« no previous file with comments | « Source/web/tests/WebFrameTest.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/win/WebFontRendering.cpp
diff --git a/Source/web/win/WebFontRendering.cpp b/Source/web/win/WebFontRendering.cpp
index 537536d2188d6762d5c811727702a5e65d85ab59..6b7c9c31cc5e91c145a0c56da6ca1375be72f200 100644
--- a/Source/web/win/WebFontRendering.cpp
+++ b/Source/web/win/WebFontRendering.cpp
@@ -12,49 +12,49 @@ namespace blink {
// static
void WebFontRendering::setUseDirectWrite(bool useDirectWrite)
{
- blink::FontCache::setUseDirectWrite(useDirectWrite);
+ FontCache::setUseDirectWrite(useDirectWrite);
}
// static
void WebFontRendering::setDirectWriteFactory(IDWriteFactory* factory)
{
- blink::FontCache::setDirectWriteFactory(factory);
+ FontCache::setDirectWriteFactory(factory);
}
// static
void WebFontRendering::setDeviceScaleFactor(float deviceScaleFactor)
{
- blink::FontCache::setDeviceScaleFactor(deviceScaleFactor);
+ FontCache::setDeviceScaleFactor(deviceScaleFactor);
}
// static
void WebFontRendering::setUseSubpixelPositioning(bool useSubpixelPositioning)
{
- blink::FontCache::setUseSubpixelPositioning(useSubpixelPositioning);
+ FontCache::setUseSubpixelPositioning(useSubpixelPositioning);
}
// static
void WebFontRendering::addSideloadedFontForTesting(SkTypeface* typeface)
{
- blink::FontCache::addSideloadedFontForTesting(typeface);
+ FontCache::addSideloadedFontForTesting(typeface);
}
// static
void WebFontRendering::setMenuFontMetrics(const wchar_t* familyName, int32_t fontHeight)
{
- blink::FontCache::setMenuFontMetrics(familyName, fontHeight);
+ FontCache::setMenuFontMetrics(familyName, fontHeight);
}
// static
void WebFontRendering::setSmallCaptionFontMetrics(const wchar_t* familyName, int32_t fontHeight)
{
- blink::FontCache::setSmallCaptionFontMetrics(familyName, fontHeight);
+ FontCache::setSmallCaptionFontMetrics(familyName, fontHeight);
}
// static
void WebFontRendering::setStatusFontMetrics(const wchar_t* familyName, int32_t fontHeight)
{
- blink::FontCache::setStatusFontMetrics(familyName, fontHeight);
+ FontCache::setStatusFontMetrics(familyName, fontHeight);
}
// static
« no previous file with comments | « Source/web/tests/WebFrameTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698