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

Unified Diff: sdk/lib/io/http.dart

Issue 125743002: Add HttpRequest::requestedUri. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Provide fall-back host and port. Created 6 years, 11 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 | sdk/lib/io/http_impl.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/io/http.dart
diff --git a/sdk/lib/io/http.dart b/sdk/lib/io/http.dart
index 859803740686bae66ca75c8b87e48fcfc650ba4a..2e70340cdf674c0e41d8f9b177384c35ec09b191 100644
--- a/sdk/lib/io/http.dart
+++ b/sdk/lib/io/http.dart
@@ -790,6 +790,14 @@ abstract class HttpRequest implements Stream<List<int>> {
Uri get uri;
/**
+ * The absolute URI for the request (read-only).
Søren Gjesse 2014/01/07 11:13:43 I like the idea of having this, but we should be s
Anders Johnsen 2014/01/07 13:59:10 Done.
+ *
+ * This provides access to the scheme, host, port,
+ * path, query string, and fragment identifier for the request.
+ */
+ Uri get absoluteUri;
+
+ /**
* The request headers (read-only).
*/
HttpHeaders get headers;
« no previous file with comments | « no previous file | sdk/lib/io/http_impl.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698