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

Unified Diff: Source/web/WebSettingsImpl.cpp

Issue 652483003: Plumb in flag to enable antialiased clipping in HTML 5 Canvas (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: More cleanup Created 6 years, 2 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/WebSettingsImpl.cpp
diff --git a/Source/web/WebSettingsImpl.cpp b/Source/web/WebSettingsImpl.cpp
index 7e2188f734376b4a23cb499aea0d051ccf987b55..53c65df23eceb74d15c8f86f7697156e466d9332 100644
--- a/Source/web/WebSettingsImpl.cpp
+++ b/Source/web/WebSettingsImpl.cpp
@@ -496,6 +496,11 @@ void WebSettingsImpl::setAntialiased2dCanvasEnabled(bool enabled)
m_settings->setAntialiased2dCanvasEnabled(enabled);
}
+void WebSettingsImpl::setAntialiasedClips2dCanvasEnabled(bool enabled)
+{
+ m_settings->setAntialiasedClips2dCanvasEnabled(enabled);
+}
+
void WebSettingsImpl::setContainerCullingEnabled(bool enabled)
{
m_settings->setContainerCullingEnabled(enabled);

Powered by Google App Engine
This is Rietveld 408576698