| OLD | NEW |
| 1 | 1 |
| 2 class ClipboardJs extends DOMTypeJs implements Clipboard native "*Clipboard" { | 2 class _ClipboardJs extends _DOMTypeJs implements Clipboard native "*Clipboard" { |
| 3 | 3 |
| 4 String get dropEffect() native "return this.dropEffect;"; | 4 String get dropEffect() native "return this.dropEffect;"; |
| 5 | 5 |
| 6 void set dropEffect(String value) native "this.dropEffect = value;"; | 6 void set dropEffect(String value) native "this.dropEffect = value;"; |
| 7 | 7 |
| 8 String get effectAllowed() native "return this.effectAllowed;"; | 8 String get effectAllowed() native "return this.effectAllowed;"; |
| 9 | 9 |
| 10 void set effectAllowed(String value) native "this.effectAllowed = value;"; | 10 void set effectAllowed(String value) native "this.effectAllowed = value;"; |
| 11 | 11 |
| 12 FileListJs get files() native "return this.files;"; | 12 _FileListJs get files() native "return this.files;"; |
| 13 | 13 |
| 14 DataTransferItemListJs get items() native "return this.items;"; | 14 _DataTransferItemListJs get items() native "return this.items;"; |
| 15 | 15 |
| 16 List get types() native "return this.types;"; | 16 List get types() native "return this.types;"; |
| 17 | 17 |
| 18 void clearData([String type = null]) native; | 18 void clearData([String type = null]) native; |
| 19 | 19 |
| 20 void getData(String type) native; | 20 void getData(String type) native; |
| 21 | 21 |
| 22 bool setData(String type, String data) native; | 22 bool setData(String type, String data) native; |
| 23 | 23 |
| 24 void setDragImage(HTMLImageElementJs image, int x, int y) native; | 24 void setDragImage(_HTMLImageElementJs image, int x, int y) native; |
| 25 } | 25 } |
| OLD | NEW |