| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 // WARNING: Do not edit - generated code. | 5 // WARNING: Do not edit - generated code. |
| 6 | 6 |
| 7 class _ClipboardWrappingImplementation extends DOMWrapperBase implements Clipboa
rd { | 7 class _ClipboardWrappingImplementation extends DOMWrapperBase implements Clipboa
rd { |
| 8 _ClipboardWrappingImplementation() : super() {} | 8 _ClipboardWrappingImplementation() : super() {} |
| 9 | 9 |
| 10 static create__ClipboardWrappingImplementation() native { | 10 static create__ClipboardWrappingImplementation() native { |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 | 22 |
| 23 void set effectAllowed(String value) { _set__Clipboard_effectAllowed(this, val
ue); } | 23 void set effectAllowed(String value) { _set__Clipboard_effectAllowed(this, val
ue); } |
| 24 static void _set__Clipboard_effectAllowed(var _this, String value) native; | 24 static void _set__Clipboard_effectAllowed(var _this, String value) native; |
| 25 | 25 |
| 26 FileList get files() { return _get__Clipboard_files(this); } | 26 FileList get files() { return _get__Clipboard_files(this); } |
| 27 static FileList _get__Clipboard_files(var _this) native; | 27 static FileList _get__Clipboard_files(var _this) native; |
| 28 | 28 |
| 29 DataTransferItemList get items() { return _get__Clipboard_items(this); } | 29 DataTransferItemList get items() { return _get__Clipboard_items(this); } |
| 30 static DataTransferItemList _get__Clipboard_items(var _this) native; | 30 static DataTransferItemList _get__Clipboard_items(var _this) native; |
| 31 | 31 |
| 32 List get types() { return _get__Clipboard_types(this); } |
| 33 static List _get__Clipboard_types(var _this) native; |
| 34 |
| 32 void clearData([String type = null]) { | 35 void clearData([String type = null]) { |
| 33 if (type === null) { | 36 if (type === null) { |
| 34 _clearData(this); | 37 _clearData(this); |
| 35 return; | 38 return; |
| 36 } else { | 39 } else { |
| 37 _clearData_2(this, type); | 40 _clearData_2(this, type); |
| 38 return; | 41 return; |
| 39 } | 42 } |
| 40 } | 43 } |
| 41 static void _clearData(receiver) native; | 44 static void _clearData(receiver) native; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 53 static bool _setData(receiver, type, data) native; | 56 static bool _setData(receiver, type, data) native; |
| 54 | 57 |
| 55 void setDragImage(HTMLImageElement image, int x, int y) { | 58 void setDragImage(HTMLImageElement image, int x, int y) { |
| 56 _setDragImage(this, image, x, y); | 59 _setDragImage(this, image, x, y); |
| 57 return; | 60 return; |
| 58 } | 61 } |
| 59 static void _setDragImage(receiver, image, x, y) native; | 62 static void _setDragImage(receiver, image, x, y) native; |
| 60 | 63 |
| 61 String get typeName() { return "Clipboard"; } | 64 String get typeName() { return "Clipboard"; } |
| 62 } | 65 } |
| OLD | NEW |