| 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 * Copyright (C) 2013 Intel Corporation. All rights reserved. | 3 * Copyright (C) 2013 Intel Corporation. All rights 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 #include "wtf/AutoReset.h" | 61 #include "wtf/AutoReset.h" |
| 62 #include "wtf/PtrUtil.h" | 62 #include "wtf/PtrUtil.h" |
| 63 #include <memory> | 63 #include <memory> |
| 64 | 64 |
| 65 namespace blink { | 65 namespace blink { |
| 66 | 66 |
| 67 class CompositedLayerMapping; | 67 class CompositedLayerMapping; |
| 68 class CompositorFilterOperations; | 68 class CompositorFilterOperations; |
| 69 class ComputedStyle; | 69 class ComputedStyle; |
| 70 class FilterOperations; | 70 class FilterOperations; |
| 71 class HitTestRequest; | |
| 72 class HitTestResult; | 71 class HitTestResult; |
| 73 class HitTestingTransformState; | 72 class HitTestingTransformState; |
| 74 class PaintLayerCompositor; | 73 class PaintLayerCompositor; |
| 75 class PaintTiming; | 74 class PaintTiming; |
| 76 class TransformationMatrix; | 75 class TransformationMatrix; |
| 77 | 76 |
| 78 enum IncludeSelfOrNot { IncludeSelf, ExcludeSelf }; | 77 enum IncludeSelfOrNot { IncludeSelf, ExcludeSelf }; |
| 79 | 78 |
| 80 enum CompositingQueryMode { | 79 enum CompositingQueryMode { |
| 81 CompositingQueriesAreAllowed, | 80 CompositingQueriesAreAllowed, |
| (...skipping 1155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1237 | 1236 |
| 1238 } // namespace blink | 1237 } // namespace blink |
| 1239 | 1238 |
| 1240 #ifndef NDEBUG | 1239 #ifndef NDEBUG |
| 1241 // Outside the WebCore namespace for ease of invocation from gdb. | 1240 // Outside the WebCore namespace for ease of invocation from gdb. |
| 1242 CORE_EXPORT void showLayerTree(const blink::PaintLayer*); | 1241 CORE_EXPORT void showLayerTree(const blink::PaintLayer*); |
| 1243 CORE_EXPORT void showLayerTree(const blink::LayoutObject*); | 1242 CORE_EXPORT void showLayerTree(const blink::LayoutObject*); |
| 1244 #endif | 1243 #endif |
| 1245 | 1244 |
| 1246 #endif // Layer_h | 1245 #endif // Layer_h |
| OLD | NEW |