| Index: sky/engine/core/rendering/RenderTreeAsText.cpp
|
| diff --git a/sky/engine/core/rendering/RenderTreeAsText.cpp b/sky/engine/core/rendering/RenderTreeAsText.cpp
|
| index a5a3f495adffa67ee23e609b81fcfe82d04788a8..c527e1d6305c15825b817d7e4a62e0eeb590d220 100644
|
| --- a/sky/engine/core/rendering/RenderTreeAsText.cpp
|
| +++ b/sky/engine/core/rendering/RenderTreeAsText.cpp
|
| @@ -36,7 +36,6 @@
|
| #include "sky/engine/core/rendering/RenderInline.h"
|
| #include "sky/engine/core/rendering/RenderLayer.h"
|
| #include "sky/engine/core/rendering/RenderView.h"
|
| -#include "sky/engine/core/rendering/compositing/CompositedLayerMapping.h"
|
| #include "sky/engine/wtf/HexNumber.h"
|
| #include "sky/engine/wtf/Vector.h"
|
| #include "sky/engine/wtf/unicode/CharacterNames.h"
|
| @@ -385,18 +384,6 @@ static void write(TextStream& ts, RenderLayer& l,
|
| else if (paintPhase == LayerPaintPhaseForeground)
|
| ts << " layerType: foreground only";
|
|
|
| - if (behavior & RenderAsTextShowCompositedLayers) {
|
| - if (l.hasCompositedLayerMapping()) {
|
| - ts << " (composited, bounds="
|
| - << l.compositedLayerMapping()->compositedBounds()
|
| - << ", drawsContent="
|
| - << l.compositedLayerMapping()->mainGraphicsLayer()->drawsContent()
|
| - << ", paints into ancestor="
|
| - << l.compositedLayerMapping()->paintsIntoCompositedAncestor()
|
| - << ")";
|
| - }
|
| - }
|
| -
|
| ts << "\n";
|
|
|
| if (paintPhase != LayerPaintPhaseBackground)
|
|
|