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

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

Issue 9233028: Frog dart:dom using interfaces and native implementation classes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge 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
« 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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 45cc7657f19dae48d279cc5413d2a84582ee8718..96240d37ec3dc3454689b4153726ec8d8f56bf1e 100644
--- a/client/dom/generated/src/frog/Clipboard.dart
+++ b/client/dom/generated/src/frog/Clipboard.dart
@@ -1,5 +1,5 @@
-class Clipboard native "*Clipboard" {
+class ClipboardJS implements Clipboard native "*Clipboard" {
String get dropEffect() native "return this.dropEffect;";
@@ -9,9 +9,9 @@ class Clipboard native "*Clipboard" {
void set effectAllowed(String value) native "this.effectAllowed = value;";
- FileList get files() native "return this.files;";
+ FileListJS get files() native "return this.files;";
- DataTransferItemList get items() native "return this.items;";
+ DataTransferItemListJS get items() native "return this.items;";
List get types() native "return this.types;";
@@ -21,7 +21,7 @@ class Clipboard native "*Clipboard" {
bool setData(String type, String data) native;
- void setDragImage(HTMLImageElement image, int x, int y) native;
+ void setDragImage(HTMLImageElementJS image, int x, int y) native;
var dartObjectLocalStorage;
« 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