| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 #include "platform/geometry/FloatPoint3D.h" | 86 #include "platform/geometry/FloatPoint3D.h" |
| 87 #include "platform/geometry/FloatRect.h" | 87 #include "platform/geometry/FloatRect.h" |
| 88 #include "platform/graphics/GraphicsContextStateSaver.h" | 88 #include "platform/graphics/GraphicsContextStateSaver.h" |
| 89 #include "platform/graphics/filters/ReferenceFilter.h" | 89 #include "platform/graphics/filters/ReferenceFilter.h" |
| 90 #include "platform/graphics/filters/SourceGraphic.h" | 90 #include "platform/graphics/filters/SourceGraphic.h" |
| 91 #include "platform/transforms/ScaleTransformOperation.h" | 91 #include "platform/transforms/ScaleTransformOperation.h" |
| 92 #include "platform/transforms/TransformationMatrix.h" | 92 #include "platform/transforms/TransformationMatrix.h" |
| 93 #include "platform/transforms/TranslateTransformOperation.h" | 93 #include "platform/transforms/TranslateTransformOperation.h" |
| 94 #include "public/platform/Platform.h" | 94 #include "public/platform/Platform.h" |
| 95 #include "wtf/StdLibExtras.h" | 95 #include "wtf/StdLibExtras.h" |
| 96 #include "wtf/UnusedParam.h" | |
| 97 #include "wtf/text/CString.h" | 96 #include "wtf/text/CString.h" |
| 98 | 97 |
| 99 using namespace std; | 98 using namespace std; |
| 100 | 99 |
| 101 namespace WebCore { | 100 namespace WebCore { |
| 102 | 101 |
| 103 using namespace HTMLNames; | 102 using namespace HTMLNames; |
| 104 | 103 |
| 105 RenderLayer::RenderLayer(RenderLayerModelObject* renderer) | 104 RenderLayer::RenderLayer(RenderLayerModelObject* renderer) |
| 106 : m_hasSelfPaintingLayerDescendant(false) | 105 : m_hasSelfPaintingLayerDescendant(false) |
| (...skipping 4063 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4170 } | 4169 } |
| 4171 } | 4170 } |
| 4172 | 4171 |
| 4173 void showLayerTree(const WebCore::RenderObject* renderer) | 4172 void showLayerTree(const WebCore::RenderObject* renderer) |
| 4174 { | 4173 { |
| 4175 if (!renderer) | 4174 if (!renderer) |
| 4176 return; | 4175 return; |
| 4177 showLayerTree(renderer->enclosingLayer()); | 4176 showLayerTree(renderer->enclosingLayer()); |
| 4178 } | 4177 } |
| 4179 #endif | 4178 #endif |
| OLD | NEW |