| Index: tools/dom/templates/html/impl/impl_IDBCursor.darttemplate
|
| diff --git a/tools/dom/templates/html/impl/impl_IDBCursor.darttemplate b/tools/dom/templates/html/impl/impl_IDBCursor.darttemplate
|
| index eeb3aa369b3e9dc8b7826d2beb3549c91b23b2ce..35ae804ee5186f375b543096fa24a73111f9ea64 100644
|
| --- a/tools/dom/templates/html/impl/impl_IDBCursor.darttemplate
|
| +++ b/tools/dom/templates/html/impl/impl_IDBCursor.darttemplate
|
| @@ -8,7 +8,7 @@ $(ANNOTATIONS)$(CLASS_MODIFIERS)class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC {
|
| @DomName('IDBCursor.delete')
|
| Future delete() {
|
| try {
|
| - return _completeRequest($dom_delete());
|
| + return _completeRequest(_delete());
|
| } catch (e, stacktrace) {
|
| return new Future.error(e, stacktrace);
|
| }
|
| @@ -17,7 +17,7 @@ $(ANNOTATIONS)$(CLASS_MODIFIERS)class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC {
|
| @DomName('IDBCursor.value')
|
| Future update(value) {
|
| try {
|
| - return _completeRequest($dom_update(value));
|
| + return _completeRequest(_update(value));
|
| } catch (e, stacktrace) {
|
| return new Future.error(e, stacktrace);
|
| }
|
|
|