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

Unified Diff: Source/web/WebKit.cpp

Issue 258953005: Renaming --enable-font-smoothing cmd line argument to --enable-font-antialiasing (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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
Index: Source/web/WebKit.cpp
diff --git a/Source/web/WebKit.cpp b/Source/web/WebKit.cpp
index aa722a53f5ba662b3636d54f163e60608a5afc34..44810dfc4e0b9b6a25e67aae9c62f262b286d450 100644
--- a/Source/web/WebKit.cpp
+++ b/Source/web/WebKit.cpp
@@ -241,14 +241,14 @@ bool layoutTestMode()
return WebCore::isRunningLayoutTest();
}
-void setFontSmoothingEnabledForTest(bool value)
+void setFontAntialiasingEnabledForTest(bool value)
{
- WebCore::setFontSmoothingEnabledForTest(value);
+ WebCore::setFontAntialiasingEnabledForTest(value);
}
-bool fontSmoothingEnabledForTest()
+bool fontAntialiasingEnabledForTest()
{
- return WebCore::isFontSmoothingEnabledForTest();
+ return WebCore::isFontAntialiasingEnabledForTest();
}
void enableLogChannel(const char* name)

Powered by Google App Engine
This is Rietveld 408576698