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

Unified Diff: runtime/bin/http.dart

Issue 9653026: Add writeString method to OutputStream (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebased Created 8 years, 9 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 | « runtime/bin/file_impl.dart ('k') | runtime/bin/http_impl.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/http.dart
diff --git a/runtime/bin/http.dart b/runtime/bin/http.dart
index b16181f724da0dd1fbd4990f877cf3afd1e36775..0baa356e85f75a4f8ca7bc449d3147af4de86ca8 100644
--- a/runtime/bin/http.dart
+++ b/runtime/bin/http.dart
@@ -204,14 +204,6 @@ interface HttpResponse default _HttpResponse {
* having retrieved the output stream will throw an exception.
*/
OutputStream get outputStream();
-
- /**
- * Write string data to the response. The string characters will be
- * encoded using UFT-8. This is a temporary convenience method as
- * long as the OutputStream interface does not have a writeString
- * method.
- */
- bool writeString(String string);
}
@@ -356,14 +348,6 @@ interface HttpClientRequest default _HttpClientRequest {
* having retrieved the output stream will throw an exception.
*/
OutputStream get outputStream();
-
- /**
- * Write string data to the request. The string characters will be
- * encoded using UFT-8. This is a temporary convenience method as
- * long as the OutputStream interface does not have a writeString
- * method.
- */
- bool writeString(String string);
}
« no previous file with comments | « runtime/bin/file_impl.dart ('k') | runtime/bin/http_impl.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698