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

Side by Side Diff: third_party/WebKit/Source/core/svg/SVGClipPathElement.h

Issue 2824823003: DOM-based SVG resource tracking (Closed)
Patch Set: Update baselines Created 3 years, 7 months 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) 2004, 2005, 2007, 2008 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005, 2007, 2008 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org> 3 * Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org>
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 29 matching lines...) Expand all
40 return clip_path_units_.Get(); 40 return clip_path_units_.Get();
41 } 41 }
42 42
43 bool SupportsFocus() const override { return false; } 43 bool SupportsFocus() const override { return false; }
44 44
45 DECLARE_VIRTUAL_TRACE(); 45 DECLARE_VIRTUAL_TRACE();
46 46
47 private: 47 private:
48 explicit SVGClipPathElement(Document&); 48 explicit SVGClipPathElement(Document&);
49 49
50 bool NeedsPendingResourceHandling() const override { return false; }
51
52 void SvgAttributeChanged(const QualifiedName&) override; 50 void SvgAttributeChanged(const QualifiedName&) override;
53 void ChildrenChanged(const ChildrenChange&) override; 51 void ChildrenChanged(const ChildrenChange&) override;
54 52
55 LayoutObject* CreateLayoutObject(const ComputedStyle&) override; 53 LayoutObject* CreateLayoutObject(const ComputedStyle&) override;
56 54
57 Member<SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType>> clip_path_units_; 55 Member<SVGAnimatedEnumeration<SVGUnitTypes::SVGUnitType>> clip_path_units_;
58 }; 56 };
59 57
60 } // namespace blink 58 } // namespace blink
61 59
62 #endif // SVGClipPathElement_h 60 #endif // SVGClipPathElement_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/layout/svg/SVGResourcesCache.cpp ('k') | third_party/WebKit/Source/core/svg/SVGElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698