Chromium Code Reviews| 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); |
|
Anders Johnsen
2012/10/30 10:43:06
Oops, ty! :)
|
| + 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 |