| Index: tools/dom/idl/dart/dart.idl
|
| diff --git a/tools/dom/idl/dart/dart.idl b/tools/dom/idl/dart/dart.idl
|
| index d60712ea30d50c1f19c0ee6b88b1f140cbd1e38a..056f98f82e32d04d620af94c29c8f1fb6d67bf1f 100644
|
| --- a/tools/dom/idl/dart/dart.idl
|
| +++ b/tools/dom/idl/dart/dart.idl
|
| @@ -41,7 +41,7 @@ interface HTMLCanvasElement {
|
| [Suppressed] DOMString toDataURL([TreatNullAs=NullString, TreatUndefinedAs=NullString,Optional=DefaultIsUndefined] in DOMString type) raises(DOMException);
|
| [Custom] DOMString toDataURL([TreatNullAs=NullString, TreatUndefinedAs=NullString,Optional=DefaultIsUndefined] in DOMString type, [Optional] in float quality) raises(DOMException);
|
|
|
| - [Suppressed] DOMObject getContext(in DOMString contextId);
|
| + [Suppressed] any getContext(in DOMString contextId);
|
| [Custom] CanvasRenderingContext getContext(in DOMString contextId, [Optional] in Dictionary attrs);
|
| };
|
|
|
| @@ -322,7 +322,7 @@ interface MutationObserver {
|
| interface SQLResultSetRowList {
|
| // Change the return type to Dictionary so that rows are exposed in the Dart
|
| // API as a Maps, with the appropriate conversion in JavaScript.
|
| - [Suppressed] DOMObject item(in unsigned long index);
|
| + [Suppressed] any item(in unsigned long index);
|
| [Custom] Dictionary item(in unsigned long index);
|
| };
|
|
|
|
|