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

Unified Diff: client/html/dartium/html_dartium.dart

Side-by-side diff isn't available for this file because of its large size.
Issue 9608025: Regenerate wrapperless DOM for changes in commit 9315061. (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:
Download patch
« no previous file with comments | « no previous file | client/html/frog/html_frog.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/html/dartium/html_dartium.dart
diff --git a/client/html/dartium/html_dartium.dart b/client/html/dartium/html_dartium.dart
index 3a3368f0da674824f3a86d0835f51a7496986556..a80d47b78743e766189421957587154f2bce9ed9 100644
--- a/client/html/dartium/html_dartium.dart
+++ b/client/html/dartium/html_dartium.dart
@@ -25699,14 +25699,12 @@ interface Element extends Node, NodeSelector default _ElementFactoryProvider {
*/
ElementList get elements();
- // TODO: The type of value should be Collection<Element>. See http://b/5392897
- void set elements(value);
+ void set elements(Collection<Element> value);
/** @domName className, classList */
Set<String> get classes();
- // TODO: The type of value should be Collection<String>. See http://b/5392897
- void set classes(value);
+ void set classes(Collection<String> value);
Map<String, String> get dataAttributes();
void set dataAttributes(Map<String, String> value);
@@ -28492,8 +28490,7 @@ typedef bool NavigatorUserMediaSuccessCallback(LocalMediaStream stream);
interface Node extends EventTarget {
NodeList get nodes();
- // TODO: The type of value should be Collection<Node>. See http://b/5392897
- void set nodes(value);
+ void set nodes(Collection<Node> value);
Node replaceWith(Node otherNode);
« no previous file with comments | « no previous file | client/html/frog/html_frog.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698