Chromium Code Reviews| Index: runtime/bin/http.dart |
| diff --git a/runtime/bin/http.dart b/runtime/bin/http.dart |
| index 2c7ddc4c263e4e8e513e1be5fec1d010836be29d..8df818c6860b809ab345361164442b9d91d36953 100644 |
| --- a/runtime/bin/http.dart |
| +++ b/runtime/bin/http.dart |
| @@ -352,6 +352,12 @@ interface HttpRequest default _HttpRequest { |
| * the request data. |
| */ |
| InputStream get inputStream(); |
| + |
| + /** |
| + * Returns the HTTP protocol version used in the request. This will |
| + * be "1.0" or "1.1". |
| + */ |
| + String get protocolVersion(); |
| } |