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

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

Issue 2912403003: Add a feature for not compositing small scrollers (Closed)
Patch Set: 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 2c46ea88f6ad0d0f3fd4ba4e2419759864bff907..921fe9bf1915280f1027c66a598d5ad302b750ef 100644
--- a/third_party/WebKit/Source/platform/exported/WebRuntimeFeatures.cpp
+++ b/third_party/WebKit/Source/platform/exported/WebRuntimeFeatures.cpp
@@ -168,6 +168,10 @@ void WebRuntimeFeatures::EnableMediaSession(bool enable) {
RuntimeEnabledFeatures::setMediaSessionEnabled(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