| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2003, 2009, 2012 Apple Inc. All rights reserved. | 2 * Copyright (C) 2003, 2009, 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 */ | 42 */ |
| 43 | 43 |
| 44 #ifndef RenderLayer_h | 44 #ifndef RenderLayer_h |
| 45 #define RenderLayer_h | 45 #define RenderLayer_h |
| 46 | 46 |
| 47 #include "core/rendering/CompositingReasons.h" | 47 #include "core/rendering/CompositingReasons.h" |
| 48 #include "core/rendering/PaintInfo.h" | 48 #include "core/rendering/PaintInfo.h" |
| 49 #include "core/rendering/RenderBox.h" | 49 #include "core/rendering/RenderBox.h" |
| 50 #include "core/rendering/RenderLayerScrollableArea.h" | 50 #include "core/rendering/RenderLayerScrollableArea.h" |
| 51 | 51 |
| 52 #include <wtf/OwnPtr.h> | 52 #include "wtf/OwnPtr.h" |
| 53 | 53 |
| 54 #include "core/rendering/RenderLayerFilterInfo.h" | 54 #include "core/rendering/RenderLayerFilterInfo.h" |
| 55 | 55 |
| 56 namespace WebCore { | 56 namespace WebCore { |
| 57 | 57 |
| 58 class FilterEffectRenderer; | 58 class FilterEffectRenderer; |
| 59 class FilterOperations; | 59 class FilterOperations; |
| 60 class HitTestRequest; | 60 class HitTestRequest; |
| 61 class HitTestResult; | 61 class HitTestResult; |
| 62 class HitTestingTransformState; | 62 class HitTestingTransformState; |
| (...skipping 1274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1337 | 1337 |
| 1338 } // namespace WebCore | 1338 } // namespace WebCore |
| 1339 | 1339 |
| 1340 #ifndef NDEBUG | 1340 #ifndef NDEBUG |
| 1341 // Outside the WebCore namespace for ease of invocation from gdb. | 1341 // Outside the WebCore namespace for ease of invocation from gdb. |
| 1342 void showLayerTree(const WebCore::RenderLayer*); | 1342 void showLayerTree(const WebCore::RenderLayer*); |
| 1343 void showLayerTree(const WebCore::RenderObject*); | 1343 void showLayerTree(const WebCore::RenderObject*); |
| 1344 #endif | 1344 #endif |
| 1345 | 1345 |
| 1346 #endif // RenderLayer_h | 1346 #endif // RenderLayer_h |
| OLD | NEW |