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

Unified Diff: third_party/WebKit/Source/platform/exported/WebRuntimeFeatures.cpp

Issue 2912403003: Add a feature for not compositing small scrollers (Closed)
Patch Set: nit Created 3 years, 7 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/platform/exported/WebRuntimeFeatures.cpp
diff --git a/third_party/WebKit/Source/platform/exported/WebRuntimeFeatures.cpp b/third_party/WebKit/Source/platform/exported/WebRuntimeFeatures.cpp
index 448690be5ac2daaa4c0f846d31f0613d2b1026ad..548f9e89ac7c5b885a7e5a5d423af6aea214b615 100644
--- a/third_party/WebKit/Source/platform/exported/WebRuntimeFeatures.cpp
+++ b/third_party/WebKit/Source/platform/exported/WebRuntimeFeatures.cpp
@@ -172,6 +172,10 @@ void WebRuntimeFeatures::EnableMojoBlobs(bool enable) {
RuntimeEnabledFeatures::setMojoBlobsEnabled(enable);
}
+void WebRuntimeFeatures::EnableNotCompositeSmallScroller(bool enable) {
+ RuntimeEnabledFeatures::setNotCompositeSmallScrollerEnabled(enable);
+}
+
void WebRuntimeFeatures::EnableNotificationConstructor(bool enable) {
RuntimeEnabledFeatures::setNotificationConstructorEnabled(enable);
}

Powered by Google App Engine
This is Rietveld 408576698