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

Unified Diff: lib/sync_http.dart

Issue 2827083002: Created a new synchronous http client using RawSynchronousSockets. (Closed)
Patch Set: Fixed issues with tests, added huge test, updated README Created 3 years, 8 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 | « lib/src/sync_http.dart ('k') | pubspec.yaml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/sync_http.dart
diff --git a/lib/sync_http.dart b/lib/sync_http.dart
new file mode 100644
index 0000000000000000000000000000000000000000..7a5e9ee7c99566629f3b05632fab38110315e6e7
--- /dev/null
+++ b/lib/sync_http.dart
@@ -0,0 +1,17 @@
+// Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+library sync.http;
+
+import 'dart:convert';
+import 'dart:io'
+ show
+ BytesBuilder,
+ ContentType,
+ HttpException,
+ HttpHeaders,
+ RawSynchronousSocket;
+
+part 'src/sync_http.dart';
+part 'src/line_decoder.dart';
« no previous file with comments | « lib/src/sync_http.dart ('k') | pubspec.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698