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

Unified Diff: lib/dom/frog/dom_frog.dart

Issue 10442125: Rework Element constructors (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: code review and rebase Created 8 years, 7 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 | « lib/dom/dom.dart ('k') | lib/dom/scripts/generator.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/dom/frog/dom_frog.dart
diff --git a/lib/dom/frog/dom_frog.dart b/lib/dom/frog/dom_frog.dart
index 594e5350ff17847d123cb92e9e1fd7eb0bd967a8..68c7a7da9dd94f0bd75e3fd7966010fac9ef2020 100644
--- a/lib/dom/frog/dom_frog.dart
+++ b/lib/dom/frog/dom_frog.dart
@@ -1222,6 +1222,9 @@ class _DOMStringListJs extends _DOMTypeJs implements DOMStringList native "*DOMS
String item(int index) native;
}
+class _DOMStringMapJs extends _DOMTypeJs implements DOMStringMap native "*DOMStringMap" {
+}
+
class _DOMTokenListJs extends _DOMTypeJs implements DOMTokenList native "*DOMTokenList" {
final int length;
@@ -13757,6 +13760,14 @@ interface DOMStringList extends List<String> {
// WARNING: Do not edit - generated code.
+interface DOMStringMap {
+}
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+// WARNING: Do not edit - generated code.
+
interface DOMTokenList {
final int length;
« no previous file with comments | « lib/dom/dom.dart ('k') | lib/dom/scripts/generator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698