Chromium Code Reviews| Index: Source/core/svg/SVGPathSegList.idl |
| diff --git a/Source/core/svg/SVGPathSegList.idl b/Source/core/svg/SVGPathSegList.idl |
| index 33f734e7e631f02b2a700c87972fbfa5c5c2542b..93810ceec9199785b0d2411815b292a2ac887567 100644 |
| --- a/Source/core/svg/SVGPathSegList.idl |
| +++ b/Source/core/svg/SVGPathSegList.idl |
| @@ -28,11 +28,11 @@ interface SVGPathSegList { |
| readonly attribute unsigned long numberOfItems; |
| [RaisesException] void clear(); |
| - [StrictTypeChecking, RaisesException] SVGPathSeg initialize(SVGPathSeg newItem); |
| + [StrictTypeChecking, RaisesException] SVGPathSeg initialize(SVGPathSeg? newItem); |
|
kouhei (in TOK)
2014/01/17 04:28:45
No ? here.
|
| [StrictTypeChecking, RaisesException] SVGPathSeg getItem(unsigned long index); |
| - [StrictTypeChecking, RaisesException] SVGPathSeg insertItemBefore(SVGPathSeg newItem, unsigned long index); |
| - [StrictTypeChecking, RaisesException] SVGPathSeg replaceItem(SVGPathSeg newItem, unsigned long index); |
| + [StrictTypeChecking, RaisesException] SVGPathSeg insertItemBefore(SVGPathSeg? newItem, unsigned long index); |
|
kouhei (in TOK)
2014/01/17 04:28:45
No ? here.
|
| + [StrictTypeChecking, RaisesException] SVGPathSeg replaceItem(SVGPathSeg? newItem, unsigned long index); |
|
kouhei (in TOK)
2014/01/17 04:28:45
No ? here.
|
| [StrictTypeChecking, RaisesException] SVGPathSeg removeItem(unsigned long index); |
| - [StrictTypeChecking, RaisesException] SVGPathSeg appendItem(SVGPathSeg newItem); |
| + [StrictTypeChecking, RaisesException] SVGPathSeg appendItem(SVGPathSeg? newItem); |
|
kouhei (in TOK)
2014/01/17 04:28:45
No ? here.
|
| }; |