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

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

Issue 195313003: [SVG2] Add getters and setters to SVG*List interfaces. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: s/slength/size Created 6 years, 9 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
« no previous file with comments | « Source/core/svg/SVGPointList.idl ('k') | Source/core/svg/SVGStringList.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGStringList.h
diff --git a/Source/core/svg/SVGStringList.h b/Source/core/svg/SVGStringList.h
index 946f571e637dd30102948bef0a7e3a91f7ffe264..0e531b964da0d6e217c12c46129b9b42eb19bd44 100644
--- a/Source/core/svg/SVGStringList.h
+++ b/Source/core/svg/SVGStringList.h
@@ -64,7 +64,7 @@ public:
const Vector<String>& values() const { return m_values; }
// SVGStringList DOM Spec implementation. These are only to be called from SVGStringListTearOff:
- unsigned long numberOfItems() { return m_values.size(); }
+ unsigned long length() { return m_values.size(); }
void clear() { m_values.clear(); }
void initialize(const String&);
String getItem(size_t, ExceptionState&);
« no previous file with comments | « Source/core/svg/SVGPointList.idl ('k') | Source/core/svg/SVGStringList.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698