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

Side by Side Diff: Source/core/svg/SVGPathSeg.h

Issue 1177303004: Updated SVGListPropertyHelper as per SVG2 Spec (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: fixed presubmit error Created 5 years, 6 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, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2004, 2005, 2006, 2008 Rob Buis <buis@kde.org> 3 * Copyright (C) 2004, 2005, 2006, 2008 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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 145
146 m_ownerList = ownerList; 146 m_ownerList = ownerList;
147 } 147 }
148 148
149 void setContextElement(SVGElement* contextElement) 149 void setContextElement(SVGElement* contextElement)
150 { 150 {
151 m_contextElement = contextElement; 151 m_contextElement = contextElement;
152 } 152 }
153 153
154 static PassRefPtrWillBeRawPtr<SVGPathSeg> create() { ASSERT_NOT_REACHED(); r eturn nullptr; } 154 static PassRefPtrWillBeRawPtr<SVGPathSeg> create() { ASSERT_NOT_REACHED(); r eturn nullptr; }
155 PassRefPtrWillBeRawPtr<SVGPathSeg> clone() { ASSERT_NOT_REACHED(); return nu llptr; } 155 virtual PassRefPtrWillBeRawPtr<SVGPathSeg> clone() = 0;
156 156
157 DECLARE_VIRTUAL_TRACE(); 157 DECLARE_VIRTUAL_TRACE();
158 158
159 protected: 159 protected:
160 void commitChange(); 160 void commitChange();
161 161
162 private: 162 private:
163 RawPtrWillBeMember<SVGPropertyBase> m_ownerList; 163 RawPtrWillBeMember<SVGPropertyBase> m_ownerList;
164 RawPtrWillBeMember<SVGElement> m_contextElement; 164 RawPtrWillBeMember<SVGElement> m_contextElement;
165 }; 165 };
(...skipping 23 matching lines...) Expand all
189 } 189 }
190 190
191 private: 191 private:
192 float m_x; 192 float m_x;
193 float m_y; 193 float m_y;
194 }; 194 };
195 195
196 } // namespace blink 196 } // namespace blink
197 197
198 #endif // SVGPathSeg_h 198 #endif // SVGPathSeg_h
OLDNEW
« no previous file with comments | « LayoutTests/svg/dom/resources/SVGTransformList-helper.js ('k') | Source/core/svg/SVGPathSegArcAbs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698