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

Unified Diff: client/dom/generated/src/frog/SVGPathSegList.dart

Issue 9233028: Frog dart:dom using interfaces and native implementation classes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 8 years, 11 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: client/dom/generated/src/frog/SVGPathSegList.dart
diff --git a/client/dom/generated/src/frog/SVGPathSegList.dart b/client/dom/generated/src/frog/SVGPathSegList.dart
index 12e60260f9877e88cd53f157fde17386c7214d93..6c8128510cef65bed39284ce931276808984e5e1 100644
--- a/client/dom/generated/src/frog/SVGPathSegList.dart
+++ b/client/dom/generated/src/frog/SVGPathSegList.dart
@@ -1,21 +1,21 @@
-class SVGPathSegList native "*SVGPathSegList" {
+class SVGPathSegListJS implements SVGPathSegList native "*SVGPathSegList" {
int get numberOfItems() native "return this.numberOfItems;";
- SVGPathSeg appendItem(SVGPathSeg newItem) native;
+ SVGPathSegJS appendItem(SVGPathSegJS newItem) native;
void clear() native;
- SVGPathSeg getItem(int index) native;
+ SVGPathSegJS getItem(int index) native;
- SVGPathSeg initialize(SVGPathSeg newItem) native;
+ SVGPathSegJS initialize(SVGPathSegJS newItem) native;
- SVGPathSeg insertItemBefore(SVGPathSeg newItem, int index) native;
+ SVGPathSegJS insertItemBefore(SVGPathSegJS newItem, int index) native;
- SVGPathSeg removeItem(int index) native;
+ SVGPathSegJS removeItem(int index) native;
- SVGPathSeg replaceItem(SVGPathSeg newItem, int index) native;
+ SVGPathSegJS replaceItem(SVGPathSegJS newItem, int index) native;
var dartObjectLocalStorage;
« no previous file with comments | « client/dom/generated/src/frog/SVGPathSegLinetoVerticalRel.dart ('k') | client/dom/generated/src/frog/SVGPathSegMovetoAbs.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698