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

Unified Diff: Source/web/WebSettingsImpl.cpp

Issue 379253002: Initial implementation of display list backed 2D canvases (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: compile error fix Created 6 years, 5 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 21a6c3c8a3e45056e98315523873c60c59a0e2fe..7cf008e7e53aad71067291aaeec692072a55a1cb 100644
--- a/Source/web/WebSettingsImpl.cpp
+++ b/Source/web/WebSettingsImpl.cpp
@@ -466,6 +466,11 @@ void WebSettingsImpl::setAcceleratedCompositingForCanvasEnabled(bool enabled)
m_settings->setAcceleratedCompositingForCanvasEnabled(enabled);
}
+void WebSettingsImpl::setDisplayList2dCanvasEnabled(bool enabled)
+{
+ m_settings->setDisplayList2dCanvasEnabled(enabled);
+}
+
void WebSettingsImpl::setAccelerated2dCanvasEnabled(bool enabled)
{
m_settings->setAccelerated2dCanvasEnabled(enabled);

Powered by Google App Engine
This is Rietveld 408576698