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

Unified Diff: client/html/generated/html/dartium/Clipboard.dart

Issue 9610011: Port DocumentFragment to the new wrapperless DOM. (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/html/generated/html/dartium/Clipboard.dart
diff --git a/client/html/generated/html/dartium/Clipboard.dart b/client/html/generated/html/dartium/Clipboard.dart
index 29989bcc102b91bc409c5c73ebb6ed5a2848494e..69b4e7ff3eaea0918672092d7d3163a06546a1e8 100644
--- a/client/html/generated/html/dartium/Clipboard.dart
+++ b/client/html/generated/html/dartium/Clipboard.dart
@@ -14,7 +14,7 @@ class _ClipboardImpl extends _DOMTypeBase implements Clipboard {
DataTransferItemList get items() => _wrap(_ptr.items);
- List get types() => _wrap(_ptr.types);
+ List<String> get types() => _wrap(_ptr.types);
Jacob 2012/03/06 05:09:00 can you keep CLs purely regenerating the DOM bindi
nweiz 2012/03/06 20:10:47 Do you mean the CLs shouldn't include unrelated DO
Jacob 2012/03/06 22:41:59 I mean avoid unrelated DOM regenerations whenever
void clearData([String type = null]) {
if (type === null) {

Powered by Google App Engine
This is Rietveld 408576698