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

Unified Diff: client/dom/generated/src/frog/Clipboard.dart

Issue 9312003: Use fields in hidden native DOM classes instead of getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Also fix native Created 8 years, 11 months 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/dom/generated/src/frog/Clipboard.dart
diff --git a/client/dom/generated/src/frog/Clipboard.dart b/client/dom/generated/src/frog/Clipboard.dart
index 8a934bc0c1b00e1a3c7571b5368dc75fc92d026c..cc22a23e21579bfb7683a11845e7175c4099d40e 100644
--- a/client/dom/generated/src/frog/Clipboard.dart
+++ b/client/dom/generated/src/frog/Clipboard.dart
@@ -1,19 +1,15 @@
class _ClipboardJs extends _DOMTypeJs implements Clipboard native "*Clipboard" {
- String get dropEffect() native "return this.dropEffect;";
+ String dropEffect;
- void set dropEffect(String value) native "this.dropEffect = value;";
+ String effectAllowed;
- String get effectAllowed() native "return this.effectAllowed;";
+ final _FileListJs files;
- void set effectAllowed(String value) native "this.effectAllowed = value;";
+ final _DataTransferItemListJs items;
- _FileListJs get files() native "return this.files;";
-
- _DataTransferItemListJs get items() native "return this.items;";
-
- List get types() native "return this.types;";
+ final List types;
void clearData([String type = null]) native;

Powered by Google App Engine
This is Rietveld 408576698