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

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

Issue 10698045: Regenerate lib/html/dartium/html_dartium.dart (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/dartium/html_dartium.dart
diff --git a/lib/html/dartium/html_dartium.dart b/lib/html/dartium/html_dartium.dart
index 74abe4223bb14f65a563e0299a2db9591381085f..efa03aca403c5350823e3339b58069e908956a08 100644
--- a/lib/html/dartium/html_dartium.dart
+++ b/lib/html/dartium/html_dartium.dart
@@ -41018,3 +41018,20 @@ class _LocationCrossFrameImpl extends _DOMWrapperBase implements Location {
// Implementation support.
String get typeName() => "Location";
}
+
+class _DOMStringMapImpl extends _DOMWrapperBase implements Map<String, String> {
+ _DOMStringMapImpl();
+
+ bool containsValue(String value) => Maps.containsValue(this, value);
+ bool containsKey(String key) native "DOMStringMap_containsKey_Callback";
+ String operator [](String key) native "DOMStringMap_item_Callback";
+ void operator []=(String key, String value) native "DOMStringMap_setItem_Callback";
+ String putIfAbsent(String key, String ifAbsent()) => Maps.putIfAbsent(this, key, ifAbsent);
+ String remove(String key) native "DOMStringMap_remove_Callback";
+ void clear() => Maps.clear(this);
+ void forEach(void f(String key, String value)) => Maps.forEach(this, f);
+ Collection<String> getKeys() native "DOMStringMap_getKeys_Callback";
+ Collection<String> getValues() => Maps.getValues(this);
+ int get length() => Maps.length(this);
+ bool isEmpty() => Maps.isEmpty(this);
+}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698