| 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 #include "platform/TraceEvent.h" | 79 #include "platform/TraceEvent.h" |
| 80 #include "platform/geometry/FloatPoint3D.h" | 80 #include "platform/geometry/FloatPoint3D.h" |
| 81 #include "platform/geometry/FloatRect.h" | 81 #include "platform/geometry/FloatRect.h" |
| 82 #include "platform/geometry/TransformState.h" | 82 #include "platform/geometry/TransformState.h" |
| 83 #include "platform/graphics/filters/Filter.h" | 83 #include "platform/graphics/filters/Filter.h" |
| 84 #include "platform/graphics/filters/SourceGraphic.h" | 84 #include "platform/graphics/filters/SourceGraphic.h" |
| 85 #include "platform/transforms/ScaleTransformOperation.h" | 85 #include "platform/transforms/ScaleTransformOperation.h" |
| 86 #include "platform/transforms/TransformationMatrix.h" | 86 #include "platform/transforms/TransformationMatrix.h" |
| 87 #include "platform/transforms/TranslateTransformOperation.h" | 87 #include "platform/transforms/TranslateTransformOperation.h" |
| 88 #include "public/platform/Platform.h" | 88 #include "public/platform/Platform.h" |
| 89 #include "wtf/Partitions.h" | |
| 90 #include "wtf/StdLibExtras.h" | 89 #include "wtf/StdLibExtras.h" |
| 90 #include "wtf/allocator/Partitions.h" |
| 91 #include "wtf/text/CString.h" | 91 #include "wtf/text/CString.h" |
| 92 | 92 |
| 93 namespace blink { | 93 namespace blink { |
| 94 | 94 |
| 95 namespace { | 95 namespace { |
| 96 | 96 |
| 97 static CompositingQueryMode gCompositingQueryMode = | 97 static CompositingQueryMode gCompositingQueryMode = |
| 98 CompositingQueriesAreOnlyAllowedInCertainDocumentLifecyclePhases; | 98 CompositingQueriesAreOnlyAllowedInCertainDocumentLifecyclePhases; |
| 99 | 99 |
| 100 struct SameSizeAsPaintLayer : DisplayItemClient { | 100 struct SameSizeAsPaintLayer : DisplayItemClient { |
| (...skipping 2806 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2907 | 2907 |
| 2908 void showLayerTree(const blink::LayoutObject* layoutObject) | 2908 void showLayerTree(const blink::LayoutObject* layoutObject) |
| 2909 { | 2909 { |
| 2910 if (!layoutObject) { | 2910 if (!layoutObject) { |
| 2911 fprintf(stderr, "Cannot showLayerTree. Root is (nil)\n"); | 2911 fprintf(stderr, "Cannot showLayerTree. Root is (nil)\n"); |
| 2912 return; | 2912 return; |
| 2913 } | 2913 } |
| 2914 showLayerTree(layoutObject->enclosingLayer()); | 2914 showLayerTree(layoutObject->enclosingLayer()); |
| 2915 } | 2915 } |
| 2916 #endif | 2916 #endif |
| OLD | NEW |