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

Side by Side Diff: client/dom/generated/src/frog/Clipboard.dart

Issue 9221006: Move frog dart:dom from fields to getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: comment 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 1
2 class Clipboard native "*Clipboard" { 2 class Clipboard native "*Clipboard" {
3 3
4 String dropEffect; 4 String get dropEffect() native "return this.dropEffect;";
5 5
6 String effectAllowed; 6 void set dropEffect(String value) native "this.dropEffect = value;";
7 7
8 FileList files; 8 String get effectAllowed() native "return this.effectAllowed;";
9 9
10 DataTransferItemList items; 10 void set effectAllowed(String value) native "this.effectAllowed = value;";
11 11
12 List types; 12 FileList get files() native "return this.files;";
13
14 DataTransferItemList get items() native "return this.items;";
15
16 List get types() native "return this.types;";
13 17
14 void clearData([String type = null]) native; 18 void clearData([String type = null]) native;
15 19
16 void getData(String type) native; 20 void getData(String type) native;
17 21
18 bool setData(String type, String data) native; 22 bool setData(String type, String data) native;
19 23
20 void setDragImage(HTMLImageElement image, int x, int y) native; 24 void setDragImage(HTMLImageElement image, int x, int y) native;
21 25
22 var dartObjectLocalStorage; 26 var dartObjectLocalStorage;
23 27
24 String get typeName() native; 28 String get typeName() native;
25 } 29 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/ClientRectList.dart ('k') | client/dom/generated/src/frog/CloseEvent.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698