| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights
reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights
reserved. |
| 3 * | 3 * |
| 4 * Portions are Copyright (C) 1998 Netscape Communications Corporation. | 4 * Portions are Copyright (C) 1998 Netscape Communications Corporation. |
| 5 * | 5 * |
| 6 * Other contributors: | 6 * Other contributors: |
| 7 * Robert O'Callahan <roc+@cs.cmu.edu> | 7 * Robert O'Callahan <roc+@cs.cmu.edu> |
| 8 * David Baron <dbaron@fas.harvard.edu> | 8 * David Baron <dbaron@fas.harvard.edu> |
| 9 * Christian Biesinger <cbiesinger@web.de> | 9 * Christian Biesinger <cbiesinger@web.de> |
| 10 * Randall Jesup <rjesup@wgate.com> | 10 * Randall Jesup <rjesup@wgate.com> |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 #include "core/layout/svg/LayoutSVGResourceClipper.h" | 69 #include "core/layout/svg/LayoutSVGResourceClipper.h" |
| 70 #include "core/layout/svg/LayoutSVGRoot.h" | 70 #include "core/layout/svg/LayoutSVGRoot.h" |
| 71 #include "core/page/Page.h" | 71 #include "core/page/Page.h" |
| 72 #include "core/page/scrolling/ScrollingCoordinator.h" | 72 #include "core/page/scrolling/ScrollingCoordinator.h" |
| 73 #include "core/paint/BoxReflectionUtils.h" | 73 #include "core/paint/BoxReflectionUtils.h" |
| 74 #include "core/paint/FilterEffectBuilder.h" | 74 #include "core/paint/FilterEffectBuilder.h" |
| 75 #include "core/paint/ObjectPaintInvalidator.h" | 75 #include "core/paint/ObjectPaintInvalidator.h" |
| 76 #include "core/paint/PaintTiming.h" | 76 #include "core/paint/PaintTiming.h" |
| 77 #include "platform/LengthFunctions.h" | 77 #include "platform/LengthFunctions.h" |
| 78 #include "platform/RuntimeEnabledFeatures.h" | 78 #include "platform/RuntimeEnabledFeatures.h" |
| 79 #include "platform/TraceEvent.h" | |
| 80 #include "platform/geometry/FloatPoint3D.h" | 79 #include "platform/geometry/FloatPoint3D.h" |
| 81 #include "platform/geometry/FloatRect.h" | 80 #include "platform/geometry/FloatRect.h" |
| 82 #include "platform/geometry/TransformState.h" | 81 #include "platform/geometry/TransformState.h" |
| 83 #include "platform/graphics/CompositorFilterOperations.h" | 82 #include "platform/graphics/CompositorFilterOperations.h" |
| 84 #include "platform/graphics/filters/Filter.h" | 83 #include "platform/graphics/filters/Filter.h" |
| 85 #include "platform/graphics/filters/SkiaImageFilterBuilder.h" | 84 #include "platform/graphics/filters/SkiaImageFilterBuilder.h" |
| 85 #include "platform/tracing/TraceEvent.h" |
| 86 #include "platform/transforms/ScaleTransformOperation.h" | 86 #include "platform/transforms/ScaleTransformOperation.h" |
| 87 #include "platform/transforms/TransformationMatrix.h" | 87 #include "platform/transforms/TransformationMatrix.h" |
| 88 #include "platform/transforms/TranslateTransformOperation.h" | 88 #include "platform/transforms/TranslateTransformOperation.h" |
| 89 #include "wtf/PtrUtil.h" | 89 #include "wtf/PtrUtil.h" |
| 90 #include "wtf/StdLibExtras.h" | 90 #include "wtf/StdLibExtras.h" |
| 91 #include "wtf/allocator/Partitions.h" | 91 #include "wtf/allocator/Partitions.h" |
| 92 #include "wtf/text/CString.h" | 92 #include "wtf/text/CString.h" |
| 93 | 93 |
| 94 namespace blink { | 94 namespace blink { |
| 95 | 95 |
| (...skipping 3109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3205 } | 3205 } |
| 3206 | 3206 |
| 3207 void showLayerTree(const blink::LayoutObject* layoutObject) { | 3207 void showLayerTree(const blink::LayoutObject* layoutObject) { |
| 3208 if (!layoutObject) { | 3208 if (!layoutObject) { |
| 3209 fprintf(stderr, "Cannot showLayerTree. Root is (nil)\n"); | 3209 fprintf(stderr, "Cannot showLayerTree. Root is (nil)\n"); |
| 3210 return; | 3210 return; |
| 3211 } | 3211 } |
| 3212 showLayerTree(layoutObject->enclosingLayer()); | 3212 showLayerTree(layoutObject->enclosingLayer()); |
| 3213 } | 3213 } |
| 3214 #endif | 3214 #endif |
| OLD | NEW |