Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(83)

Side by Side Diff: third_party/WebKit/Source/core/paint/SVGPaintContext.h

Issue 2570223002: [SPv2] Associate effect property nodes for SVG paint chunks (Closed)
Patch Set: rebased Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 bool isIsolationInstalled() const; 148 bool isIsolationInstalled() const;
149 149
150 const LayoutObject& m_object; 150 const LayoutObject& m_object;
151 PaintInfo m_paintInfo; 151 PaintInfo m_paintInfo;
152 std::unique_ptr<PaintInfo> m_filterPaintInfo; 152 std::unique_ptr<PaintInfo> m_filterPaintInfo;
153 LayoutSVGResourceFilter* m_filter; 153 LayoutSVGResourceFilter* m_filter;
154 LayoutSVGResourceMasker* m_masker; 154 LayoutSVGResourceMasker* m_masker;
155 std::unique_ptr<CompositingRecorder> m_compositingRecorder; 155 std::unique_ptr<CompositingRecorder> m_compositingRecorder;
156 Optional<ClipPathClipper> m_clipPathClipper; 156 Optional<ClipPathClipper> m_clipPathClipper;
157 std::unique_ptr<SVGFilterRecordingContext> m_filterRecordingContext; 157 std::unique_ptr<SVGFilterRecordingContext> m_filterRecordingContext;
158 Optional<ScopedPaintChunkProperties> m_scopedPaintChunkProperties;
158 #if ENABLE(ASSERT) 159 #if ENABLE(ASSERT)
159 bool m_applyClipMaskAndFilterIfNecessaryCalled; 160 bool m_applyClipMaskAndFilterIfNecessaryCalled;
160 #endif 161 #endif
161 }; 162 };
162 163
163 } // namespace blink 164 } // namespace blink
164 165
165 #endif // SVGPaintContext_h 166 #endif // SVGPaintContext_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698