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

Unified Diff: Source/platform/LayoutTestSupport.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: Preparing for landing this as a 4 sided patch 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
« no previous file with comments | « Source/platform/LayoutTestSupport.h ('k') | Source/platform/fonts/win/FontPlatformDataWin.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/LayoutTestSupport.cpp
diff --git a/Source/platform/LayoutTestSupport.cpp b/Source/platform/LayoutTestSupport.cpp
index 0c5ca0e0a0cbeb8a060754532519ee7e8a872aaf..680c33f00eb90c4cd6b1e98e029fab5ebfbd5c27 100644
--- a/Source/platform/LayoutTestSupport.cpp
+++ b/Source/platform/LayoutTestSupport.cpp
@@ -34,7 +34,7 @@
namespace WebCore {
static bool s_isRunningLayoutTest = false;
-static bool s_isFontSmoothingEnabled = false;
+static bool s_isFontAntialiasingEnabled = false;
bool isRunningLayoutTest()
{
@@ -46,14 +46,14 @@ void setIsRunningLayoutTest(bool value)
s_isRunningLayoutTest = value;
}
-bool isFontSmoothingEnabledForTest()
+bool isFontAntialiasingEnabledForTest()
{
- return s_isFontSmoothingEnabled;
+ return s_isFontAntialiasingEnabled;
}
-void setFontSmoothingEnabledForTest(bool value)
+void setFontAntialiasingEnabledForTest(bool value)
{
- s_isFontSmoothingEnabled = value;
+ s_isFontAntialiasingEnabled = value;
}
} // namespace WebCore
« no previous file with comments | « Source/platform/LayoutTestSupport.h ('k') | Source/platform/fonts/win/FontPlatformDataWin.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698