Index: Source/core/page/scrolling/ScrollingCoordinator.cpp |
diff --git a/Source/core/page/scrolling/ScrollingCoordinator.cpp b/Source/core/page/scrolling/ScrollingCoordinator.cpp |
index 8e15171554005cd4fcb98e3f3e787e9dfa61cc6c..ffdef52f95e2b99a2f97dfe6ba06b1656f22d429 100644 |
--- a/Source/core/page/scrolling/ScrollingCoordinator.cpp |
+++ b/Source/core/page/scrolling/ScrollingCoordinator.cpp |
@@ -935,11 +935,11 @@ String ScrollingCoordinator::mainThreadScrollingReasonsAsText(MainThreadScrollin |
StringBuilder stringBuilder; |
if (reasons & ScrollingCoordinator::HasSlowRepaintObjects) |
- stringBuilder.append("Has slow repaint objects, "); |
+ stringBuilder.appendLiteral("Has slow repaint objects, "); |
if (reasons & ScrollingCoordinator::HasViewportConstrainedObjectsWithoutSupportingFixedLayers) |
- stringBuilder.append("Has viewport constrained objects without supporting fixed layers, "); |
+ stringBuilder.appendLiteral("Has viewport constrained objects without supporting fixed layers, "); |
if (reasons & ScrollingCoordinator::HasNonLayerViewportConstrainedObjects) |
- stringBuilder.append("Has non-layer viewport-constrained objects, "); |
+ stringBuilder.appendLiteral("Has non-layer viewport-constrained objects, "); |
if (stringBuilder.length()) |
stringBuilder.resize(stringBuilder.length() - 2); |