| Index: third_party/WebKit/Source/platform/graphics/paint/SubsequenceRecorder.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/paint/SubsequenceRecorder.cpp b/third_party/WebKit/Source/platform/graphics/paint/SubsequenceRecorder.cpp
|
| index aef96a3e011056d507e62bced7ab3c34c73b1aca..19648b8efe672fc0d1035c5e15861da336c850b4 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/paint/SubsequenceRecorder.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/paint/SubsequenceRecorder.cpp
|
| @@ -20,6 +20,10 @@ bool SubsequenceRecorder::useCachedSubsequenceIfPossible(GraphicsContext& contex
|
| if (!context.getPaintController().clientCacheIsValid(client))
|
| return false;
|
|
|
| + // TODO(pdr): Implement subsequence caching for spv2 (crbug.com/596983).
|
| + if (RuntimeEnabledFeatures::slimmingPaintV2Enabled())
|
| + return false;
|
| +
|
| context.getPaintController().createAndAppend<CachedDisplayItem>(client, DisplayItem::CachedSubsequence);
|
|
|
| #if ENABLE(ASSERT)
|
|
|