Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Unified Diff: client/html/generated/src/wrapping/_ClipboardWrappingImplementation.dart

Issue 8835006: New version of dart:html (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix typos Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: client/html/generated/src/wrapping/_ClipboardWrappingImplementation.dart
diff --git a/client/html/generated/src/wrapping/_ClipboardWrappingImplementation.dart b/client/html/generated/src/wrapping/_ClipboardWrappingImplementation.dart
index 6464dabf27fa266198ebb5fa32f0b0cad8d2de59..fbd98ea5778b1f1716f67c37017b529fa503583f 100644
--- a/client/html/generated/src/wrapping/_ClipboardWrappingImplementation.dart
+++ b/client/html/generated/src/wrapping/_ClipboardWrappingImplementation.dart
@@ -17,9 +17,11 @@ class ClipboardWrappingImplementation extends DOMWrapperBase implements Clipboar
FileList get files() { return LevelDom.wrapFileList(_ptr.files); }
- DataTransferItems get items() { return LevelDom.wrapDataTransferItems(_ptr.items); }
+ DataTransferItemList get items() { return LevelDom.wrapDataTransferItemList(_ptr.items); }
- void clearData([String type = null]) {
+ List get types() { return _ptr.types; }
+
+ void clearData([String type]) {
if (type === null) {
_ptr.clearData();
return;

Powered by Google App Engine
This is Rietveld 408576698