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

Unified Diff: lib/io/http.dart

Issue 11337019: Use patching for dart:io. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 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
Index: lib/io/http.dart
diff --git a/runtime/bin/http.dart b/lib/io/http.dart
similarity index 99%
rename from runtime/bin/http.dart
rename to lib/io/http.dart
index 38631650ee23a5866e0731b9622da3337c35faf7..9418bba529ca2c2d8e34241cb68e19f2a977e654 100644
--- a/runtime/bin/http.dart
+++ b/lib/io/http.dart
@@ -116,7 +116,7 @@ abstract class HttpServer {
* Set the timeout, in seconds, for sessions of this HTTP server. Default
* is 20 minutes.
*/
- int set sessionTimeout(int timeout);
+ set sessionTimeout(int timeout);
}
@@ -403,7 +403,7 @@ abstract class HttpSession {
/**
* Access the user-data associated with the session.
*/
- Dynamic data;
+ dynamic data;
/**
* Destroy the session. This will terminate the session and any further

Powered by Google App Engine
This is Rietveld 408576698