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

Unified Diff: third_party/WebKit/Source/web/WebSettingsImpl.cpp

Issue 2359843003: Turning on clip anti-aliasing by default in Chrome. (Closed)
Patch Set: Adding the layout test. Created 4 years, 3 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: third_party/WebKit/Source/web/WebSettingsImpl.cpp
diff --git a/third_party/WebKit/Source/web/WebSettingsImpl.cpp b/third_party/WebKit/Source/web/WebSettingsImpl.cpp
index b95e5eca97a23ac917f8d3ad93309c7556a1fc9b..a0ba4501dc0c152778ce7a477f5fa58626fd5c33 100644
--- a/third_party/WebKit/Source/web/WebSettingsImpl.cpp
+++ b/third_party/WebKit/Source/web/WebSettingsImpl.cpp
@@ -547,9 +547,9 @@ void WebSettingsImpl::setAntialiased2dCanvasEnabled(bool enabled)
m_settings->setAntialiased2dCanvasEnabled(enabled);
}
-void WebSettingsImpl::setAntialiasedClips2dCanvasEnabled(bool enabled)
+void WebSettingsImpl::setAntialiasedClips2dCanvasDisabled(bool disabled)
{
- m_settings->setAntialiasedClips2dCanvasEnabled(enabled);
+ m_settings->setAntialiasedClips2dCanvasDisabled(disabled);
}
void WebSettingsImpl::setPreferCompositingToLCDTextEnabled(bool enabled)

Powered by Google App Engine
This is Rietveld 408576698