| OLD | NEW |
| 1 /** | 1 /** |
| 2 * Copyright (C) 2007 Rob Buis <buis@kde.org> | 2 * Copyright (C) 2007 Rob Buis <buis@kde.org> |
| 3 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org> | 3 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org> |
| 4 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> | 4 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> |
| 5 * Copyright (C) 2009 Google, Inc. All rights reserved. | 5 * Copyright (C) 2009 Google, Inc. All rights reserved. |
| 6 * Copyright (C) Research In Motion Limited 2010. All rights reserved. | 6 * Copyright (C) Research In Motion Limited 2010. All rights reserved. |
| 7 * Copyright (C) 2012 Zoltan Herczeg <zherczeg@webkit.org>. | 7 * Copyright (C) 2012 Zoltan Herczeg <zherczeg@webkit.org>. |
| 8 * | 8 * |
| 9 * This library is free software; you can redistribute it and/or | 9 * This library is free software; you can redistribute it and/or |
| 10 * modify it under the terms of the GNU Library General Public | 10 * modify it under the terms of the GNU Library General Public |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 bool isIsolationInstalled() const; | 147 bool isIsolationInstalled() const; |
| 148 | 148 |
| 149 const LayoutObject& m_object; | 149 const LayoutObject& m_object; |
| 150 PaintInfo m_paintInfo; | 150 PaintInfo m_paintInfo; |
| 151 std::unique_ptr<PaintInfo> m_filterPaintInfo; | 151 std::unique_ptr<PaintInfo> m_filterPaintInfo; |
| 152 LayoutSVGResourceFilter* m_filter; | 152 LayoutSVGResourceFilter* m_filter; |
| 153 LayoutSVGResourceMasker* m_masker; | 153 LayoutSVGResourceMasker* m_masker; |
| 154 std::unique_ptr<CompositingRecorder> m_compositingRecorder; | 154 std::unique_ptr<CompositingRecorder> m_compositingRecorder; |
| 155 Optional<ClipPathClipper> m_clipPathClipper; | 155 Optional<ClipPathClipper> m_clipPathClipper; |
| 156 std::unique_ptr<SVGFilterRecordingContext> m_filterRecordingContext; | 156 std::unique_ptr<SVGFilterRecordingContext> m_filterRecordingContext; |
| 157 Optional<ScopedPaintChunkProperties> m_scopedPaintChunkProperties; |
| 157 #if ENABLE(ASSERT) | 158 #if ENABLE(ASSERT) |
| 158 bool m_applyClipMaskAndFilterIfNecessaryCalled; | 159 bool m_applyClipMaskAndFilterIfNecessaryCalled; |
| 159 #endif | 160 #endif |
| 160 }; | 161 }; |
| 161 | 162 |
| 162 } // namespace blink | 163 } // namespace blink |
| 163 | 164 |
| 164 #endif // SVGPaintContext_h | 165 #endif // SVGPaintContext_h |
| OLD | NEW |