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

Unified Diff: pkg/http_multi_server/lib/http_multi_server.dart

Issue 460973002: Add dummy implementation of defaultResponseHeaders (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 4 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/http_multi_server/lib/http_multi_server.dart
diff --git a/pkg/http_multi_server/lib/http_multi_server.dart b/pkg/http_multi_server/lib/http_multi_server.dart
index c055367dc89fad727b2a45e21536a609d0e9a182..76c3eba1a43305d71ab71efc1535eadb3de48c7e 100644
--- a/pkg/http_multi_server/lib/http_multi_server.dart
+++ b/pkg/http_multi_server/lib/http_multi_server.dart
@@ -27,6 +27,9 @@ class HttpMultiServer extends StreamView<HttpRequest> implements HttpServer {
}
}
+ HttpHeaders get defaultResponseHeaders =>
+ throw new UnsupportedError('defaultResponseHeaders not supported');
+
Duration get idleTimeout => _servers.first.idleTimeout;
set idleTimeout(Duration value) {
for (var server in _servers) {
« 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