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

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

Issue 9317046: Make dart:dom implementation types private so they don't muddle the docs. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 10 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 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 }
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