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

Unified Diff: pkg/http/test/safe_http_server.dart

Issue 15688013: Remove the HttpRequest.queryParameters getter (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 7 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 | pkg/http/test/utils.dart » ('j') | pkg/oauth2/lib/oauth2.dart » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/http/test/safe_http_server.dart
diff --git a/pkg/http/test/safe_http_server.dart b/pkg/http/test/safe_http_server.dart
index c9885f11759bd6c0bbc104632ffdc40a91433780..a580770bdc6caa7e4ade8476fc470245ce54e8fd 100644
--- a/pkg/http/test/safe_http_server.dart
+++ b/pkg/http/test/safe_http_server.dart
@@ -76,7 +76,6 @@ class _HttpRequestWrapper extends StreamView<List<int>> implements HttpRequest {
int get contentLength => _inner.contentLength;
String get method => _inner.method;
Uri get uri => _inner.uri;
- Map<String, String> get queryParameters => _inner.queryParameters;
HttpHeaders get headers => _inner.headers;
List<Cookie> get cookies => _inner.cookies;
bool get persistentConnection => _inner.persistentConnection;
« no previous file with comments | « no previous file | pkg/http/test/utils.dart » ('j') | pkg/oauth2/lib/oauth2.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698