| 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);
|
| +}
|
|
|