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

Unified Diff: client/dom/generated/src/wrapping/_ClipboardWrappingImplementation.dart

Issue 9619015: Regenerate dart:dom and dart:html bindings (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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/wrapping/_ClipboardWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_ClipboardWrappingImplementation.dart b/client/dom/generated/src/wrapping/_ClipboardWrappingImplementation.dart
index 49c912ae53e9849f626f1578b159534d1d836bc4..57bf1898d25caf376a77c93d7143bcba86e2c69f 100644
--- a/client/dom/generated/src/wrapping/_ClipboardWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_ClipboardWrappingImplementation.dart
@@ -29,8 +29,8 @@ class _ClipboardWrappingImplementation extends DOMWrapperBase implements Clipboa
DataTransferItemList get items() { return _get_items(this); }
static DataTransferItemList _get_items(var _this) native;
- List<String> get types() { return _get_types(this); }
- static List<String> _get_types(var _this) native;
+ List get types() { return _get_types(this); }
+ static List _get_types(var _this) native;
void clearData([String type = null]) {
if (type === null) {
@@ -44,11 +44,10 @@ class _ClipboardWrappingImplementation extends DOMWrapperBase implements Clipboa
static void _clearData(receiver) native;
static void _clearData_2(receiver, type) native;
- void getData(String type) {
- _getData(this, type);
- return;
+ String getData(String type) {
+ return _getData(this, type);
}
- static void _getData(receiver, type) native;
+ static String _getData(receiver, type) native;
bool setData(String type, String data) {
return _setData(this, type, data);

Powered by Google App Engine
This is Rietveld 408576698