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

Unified Diff: Source/web/WebSettingsImpl.cpp

Issue 134443003: Implement CSSOM Smooth Scroll API (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 6 years, 10 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 e418c07ad200654b8480918ec4bf946d6c658a46..25557062d112db323b58f60604d433db0b1f71dc 100644
--- a/Source/web/WebSettingsImpl.cpp
+++ b/Source/web/WebSettingsImpl.cpp
@@ -710,6 +710,11 @@ void WebSettingsImpl::setCompositedScrollingForFramesEnabled(bool enabled)
m_settings->setCompositedScrollingForFramesEnabled(enabled);
}
+void WebSettingsImpl::setCompositorDrivenScrollAnimationsEnabled(bool enabled)
+{
+ m_settings->setCompositorDrivenScrollAnimationsEnabled(enabled);
+}
+
void WebSettingsImpl::setCompositorTouchHitTesting(bool enabled)
{
m_settings->setCompositorTouchHitTesting(enabled);

Powered by Google App Engine
This is Rietveld 408576698