Chromium Code Reviews| Index: runtime/bin/http_impl.dart |
| diff --git a/runtime/bin/http_impl.dart b/runtime/bin/http_impl.dart |
| index cc71c563e5c44c23b5952ec913b3bea6d604e22a..8b197d799f576be7125367487e528e59456cfe67 100644 |
| --- a/runtime/bin/http_impl.dart |
| +++ b/runtime/bin/http_impl.dart |
| @@ -55,6 +55,10 @@ class _HttpHeaders implements HttpHeaders { |
| _headers.remove(name); |
| } |
| + void forEach(void f(String name, List<String> values)) { |
| + _headers.forEach(f); |
| + } |
| + |
| String get host() => _host; |
| void set host(String host) { |