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

Unified Diff: third_party/WebKit/Source/core/svg/SVGStringList.h

Issue 2390773004: reflow comments in core/svg/ (Closed)
Patch Set: comments (heh!) Created 4 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/svg/SVGStringList.h
diff --git a/third_party/WebKit/Source/core/svg/SVGStringList.h b/third_party/WebKit/Source/core/svg/SVGStringList.h
index 756e4a8cc11043e00ea592d6a594bd60dd2a37b7..f03826aa03e870153fe4b277198335ce315d44c2 100644
--- a/third_party/WebKit/Source/core/svg/SVGStringList.h
+++ b/third_party/WebKit/Source/core/svg/SVGStringList.h
@@ -43,13 +43,16 @@ class SVGStringListTearOff;
// Implementation of SVGStringList spec:
// http://www.w3.org/TR/SVG/single-page.html#types-InterfaceSVGStringList
// See SVGStringListTearOff for actual Javascript interface.
-// Unlike other SVG*List implementations, SVGStringList is NOT tied to SVGString.
+// Unlike other SVG*List implementations, SVGStringList is NOT tied to
+// SVGString.
// SVGStringList operates directly on DOMString.
//
// In short:
// SVGStringList has_a Vector<String>.
-// SVGStringList items are exposed to Javascript as DOMString (not SVGString) as in the spec.
-// SVGString is used only for boxing values for non-list string property SVGAnimatedString,
+// SVGStringList items are exposed to Javascript as DOMString (not SVGString)
+// as in the spec.
+// SVGString is used only for boxing values for non-list string property
+// SVGAnimatedString,
// and not used for SVGStringList.
class SVGStringList final : public SVGPropertyHelper<SVGStringList> {
public:
@@ -61,7 +64,8 @@ class SVGStringList final : public SVGPropertyHelper<SVGStringList> {
const Vector<String>& values() const { return m_values; }
- // SVGStringList DOM Spec implementation. These are only to be called from SVGStringListTearOff:
+ // SVGStringList DOM Spec implementation. These are only to be called from
+ // SVGStringListTearOff:
unsigned long length() { return m_values.size(); }
void clear() { m_values.clear(); }
void initialize(const String&);
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGStopElement.cpp ('k') | third_party/WebKit/Source/core/svg/SVGStringList.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698