| Index: client/dom/generated/src/wrapping/_ClipboardWrappingImplementation.dart
|
| diff --git a/client/dom/generated/src/wrapping/_ClipboardWrappingImplementation.dart b/client/dom/generated/src/wrapping/_ClipboardWrappingImplementation.dart
|
| index 49c912ae53e9849f626f1578b159534d1d836bc4..57bf1898d25caf376a77c93d7143bcba86e2c69f 100644
|
| --- a/client/dom/generated/src/wrapping/_ClipboardWrappingImplementation.dart
|
| +++ b/client/dom/generated/src/wrapping/_ClipboardWrappingImplementation.dart
|
| @@ -29,8 +29,8 @@ class _ClipboardWrappingImplementation extends DOMWrapperBase implements Clipboa
|
| DataTransferItemList get items() { return _get_items(this); }
|
| static DataTransferItemList _get_items(var _this) native;
|
|
|
| - List<String> get types() { return _get_types(this); }
|
| - static List<String> _get_types(var _this) native;
|
| + List get types() { return _get_types(this); }
|
| + static List _get_types(var _this) native;
|
|
|
| void clearData([String type = null]) {
|
| if (type === null) {
|
| @@ -44,11 +44,10 @@ class _ClipboardWrappingImplementation extends DOMWrapperBase implements Clipboa
|
| static void _clearData(receiver) native;
|
| static void _clearData_2(receiver, type) native;
|
|
|
| - void getData(String type) {
|
| - _getData(this, type);
|
| - return;
|
| + String getData(String type) {
|
| + return _getData(this, type);
|
| }
|
| - static void _getData(receiver, type) native;
|
| + static String _getData(receiver, type) native;
|
|
|
| bool setData(String type, String data) {
|
| return _setData(this, type, data);
|
|
|