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

Unified Diff: pkg/intl/lib/src/http_request_data_reader.dart

Issue 814113004: Pull args, intl, logging, shelf, and source_maps out of the SDK. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Also csslib. Created 6 years 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 | « pkg/intl/lib/src/file_data_reader.dart ('k') | pkg/intl/lib/src/icu_parser.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/intl/lib/src/http_request_data_reader.dart
diff --git a/pkg/intl/lib/src/http_request_data_reader.dart b/pkg/intl/lib/src/http_request_data_reader.dart
deleted file mode 100644
index ce63870641e087799cfb7e61055a06c7817ddd4e..0000000000000000000000000000000000000000
--- a/pkg/intl/lib/src/http_request_data_reader.dart
+++ /dev/null
@@ -1,53 +0,0 @@
-// Copyright (c) 2012, 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.
-
-/**
- * This contains a reader that accesses data using the HttpRequest
- * facility, and thus works only in the web browser.
- */
-
-library http_request_data_reader;
-
-import 'dart:async';
-import 'dart:html';
-import 'intl_helpers.dart';
-
-class HttpRequestDataReader implements LocaleDataReader {
-
- /** The base url from which we read the data. */
- String url;
- HttpRequestDataReader(this.url);
-
- Future read(String locale) {
- // TODO(alanknight): Remove this once it's not necessary for Chrome.
- // Without it, the tests will be flaky on Chrome. Issue 11834.
- var someNumber = new DateTime.now().millisecondsSinceEpoch;
- var request = new HttpRequest();
- request.timeout = 5000;
- return _getString('$url$locale.json?cacheBlocker=$someNumber', request)
- .then((r) => r.responseText);
- }
-
- /// Read a string with the given request. This is a stripped down copy
- /// of HttpRequest getString, but was the simplest way I could find to
- /// issue a request with a timeout.
- Future<HttpRequest> _getString(String url, HttpRequest xhr) {
- var completer = new Completer<HttpRequest>();
- xhr.open('GET', url, async: true);
- xhr.onLoad.listen((e) {
- // Note: file:// URIs have status of 0.
- if ((xhr.status >= 200 && xhr.status < 300) ||
- xhr.status == 0 || xhr.status == 304) {
- completer.complete(xhr);
- } else {
- completer.completeError(e);
- }
- });
-
- xhr.onError.listen(completer.completeError);
- xhr.send();
-
- return completer.future;
- }
-}
« no previous file with comments | « pkg/intl/lib/src/file_data_reader.dart ('k') | pkg/intl/lib/src/icu_parser.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698