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

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

Issue 9271031: Make DOMType the root of DOM implementation types. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: x 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 96240d37ec3dc3454689b4153726ec8d8f56bf1e..4fff899fdf287156d77129f2e9bb19b6b0be32de 100644
--- a/client/dom/generated/src/frog/Clipboard.dart
+++ b/client/dom/generated/src/frog/Clipboard.dart
@@ -1,5 +1,5 @@
-class ClipboardJS implements Clipboard native "*Clipboard" {
+class ClipboardJs extends DOMTypeJs implements Clipboard native "*Clipboard" {
String get dropEffect() native "return this.dropEffect;";
@@ -9,9 +9,9 @@ class ClipboardJS implements Clipboard native "*Clipboard" {
void set effectAllowed(String value) native "this.effectAllowed = value;";
- FileListJS get files() native "return this.files;";
+ FileListJs get files() native "return this.files;";
- DataTransferItemListJS get items() native "return this.items;";
+ DataTransferItemListJs get items() native "return this.items;";
List get types() native "return this.types;";
@@ -21,9 +21,5 @@ class ClipboardJS implements Clipboard native "*Clipboard" {
bool setData(String type, String data) native;
- void setDragImage(HTMLImageElementJS image, int x, int y) native;
-
- var dartObjectLocalStorage;
-
- String get typeName() native;
+ void setDragImage(HTMLImageElementJs image, int x, int y) native;
}
« 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