| Index: tools/dom/templates/html/impl/impl_SVGColor.darttemplate
|
| diff --git a/tools/dom/templates/html/impl/impl_ImageData.darttemplate b/tools/dom/templates/html/impl/impl_SVGColor.darttemplate
|
| similarity index 52%
|
| copy from tools/dom/templates/html/impl/impl_ImageData.darttemplate
|
| copy to tools/dom/templates/html/impl/impl_SVGColor.darttemplate
|
| index c7e0977bb537c18f02357fedc6c19d2581ee1eb8..ea7c6e6e365ffd957d568123384c022d71d3d107 100644
|
| --- a/tools/dom/templates/html/impl/impl_ImageData.darttemplate
|
| +++ b/tools/dom/templates/html/impl/impl_SVGColor.darttemplate
|
| @@ -3,18 +3,9 @@
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| part of $LIBRARYNAME;
|
| -$ANNOTATIONS
|
| -class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC {
|
| -$if DARTIUM
|
| - List<int> __data;
|
|
|
| - List<int> get data {
|
| - if (__data == null) {
|
| - __data = _data;
|
| - }
|
| - return __data;
|
| - }
|
| -$endif
|
| -
|
| -$!MEMBERS
|
| -}
|
| +// Hack because the baseclass is private in dart:html, and we want to omit this
|
| +// type entirely but can't.
|
| +@DocsEditable
|
| +$(ANNOTATIONS)class $CLASSNAME$IMPLEMENTS$NATIVESPEC {
|
| +$!MEMBERS}
|
|
|