| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights | 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights |
| 3 * reserved. | 3 * reserved. |
| 4 * | 4 * |
| 5 * Portions are Copyright (C) 1998 Netscape Communications Corporation. | 5 * Portions are Copyright (C) 1998 Netscape Communications Corporation. |
| 6 * | 6 * |
| 7 * Other contributors: | 7 * Other contributors: |
| 8 * Robert O'Callahan <roc+@cs.cmu.edu> | 8 * Robert O'Callahan <roc+@cs.cmu.edu> |
| 9 * David Baron <dbaron@fas.harvard.edu> | 9 * David Baron <dbaron@fas.harvard.edu> |
| 10 * Christian Biesinger <cbiesinger@web.de> | 10 * Christian Biesinger <cbiesinger@web.de> |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 #include "core/paint/ObjectPaintInvalidator.h" | 75 #include "core/paint/ObjectPaintInvalidator.h" |
| 76 #include "platform/LengthFunctions.h" | 76 #include "platform/LengthFunctions.h" |
| 77 #include "platform/RuntimeEnabledFeatures.h" | 77 #include "platform/RuntimeEnabledFeatures.h" |
| 78 #include "platform/geometry/FloatPoint3D.h" | 78 #include "platform/geometry/FloatPoint3D.h" |
| 79 #include "platform/geometry/FloatRect.h" | 79 #include "platform/geometry/FloatRect.h" |
| 80 #include "platform/geometry/TransformState.h" | 80 #include "platform/geometry/TransformState.h" |
| 81 #include "platform/graphics/CompositorFilterOperations.h" | 81 #include "platform/graphics/CompositorFilterOperations.h" |
| 82 #include "platform/graphics/filters/Filter.h" | 82 #include "platform/graphics/filters/Filter.h" |
| 83 #include "platform/instrumentation/tracing/TraceEvent.h" | 83 #include "platform/instrumentation/tracing/TraceEvent.h" |
| 84 #include "platform/transforms/TransformationMatrix.h" | 84 #include "platform/transforms/TransformationMatrix.h" |
| 85 #include "wtf/PtrUtil.h" | 85 #include "platform/wtf/PtrUtil.h" |
| 86 #include "wtf/StdLibExtras.h" | 86 #include "platform/wtf/StdLibExtras.h" |
| 87 #include "wtf/allocator/Partitions.h" | 87 #include "platform/wtf/allocator/Partitions.h" |
| 88 #include "wtf/text/CString.h" | 88 #include "platform/wtf/text/CString.h" |
| 89 | 89 |
| 90 namespace blink { | 90 namespace blink { |
| 91 | 91 |
| 92 namespace { | 92 namespace { |
| 93 | 93 |
| 94 static CompositingQueryMode g_compositing_query_mode = | 94 static CompositingQueryMode g_compositing_query_mode = |
| 95 kCompositingQueriesAreOnlyAllowedInCertainDocumentLifecyclePhases; | 95 kCompositingQueriesAreOnlyAllowedInCertainDocumentLifecyclePhases; |
| 96 | 96 |
| 97 struct SameSizeAsPaintLayer : DisplayItemClient { | 97 struct SameSizeAsPaintLayer : DisplayItemClient { |
| 98 int bit_fields; | 98 int bit_fields; |
| (...skipping 3180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3279 } | 3279 } |
| 3280 | 3280 |
| 3281 void showLayerTree(const blink::LayoutObject* layoutObject) { | 3281 void showLayerTree(const blink::LayoutObject* layoutObject) { |
| 3282 if (!layoutObject) { | 3282 if (!layoutObject) { |
| 3283 LOG(INFO) << "Cannot showLayerTree. Root is (nil)"; | 3283 LOG(INFO) << "Cannot showLayerTree. Root is (nil)"; |
| 3284 return; | 3284 return; |
| 3285 } | 3285 } |
| 3286 showLayerTree(layoutObject->EnclosingLayer()); | 3286 showLayerTree(layoutObject->EnclosingLayer()); |
| 3287 } | 3287 } |
| 3288 #endif | 3288 #endif |
| OLD | NEW |