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

Unified Diff: pkg/intl/lib/date_symbol_data_http_request.dart

Issue 11785036: Missed two files that needed dart:async import. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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 | « no previous file | pkg/intl/lib/src/http_request_data_reader.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/intl/lib/date_symbol_data_http_request.dart
diff --git a/pkg/intl/lib/date_symbol_data_http_request.dart b/pkg/intl/lib/date_symbol_data_http_request.dart
index b56c990eecd93b164d44b63bcd0601dda8e0b5fd..def256585c79ba6f4fa0cc0939c4ff641230a397 100644
--- a/pkg/intl/lib/date_symbol_data_http_request.dart
+++ b/pkg/intl/lib/date_symbol_data_http_request.dart
@@ -8,8 +8,9 @@
*/
library date_symbol_data_json;
-import "date_symbols.dart";
-import "src/lazy_locale_data.dart";
+import 'dart:async';
+import 'date_symbols.dart';
+import 'src/lazy_locale_data.dart';
import 'src/date_format_internal.dart';
import 'src/http_request_data_reader.dart';
@@ -39,4 +40,4 @@ Future initializeDateFormatting(String locale, String url) {
/** Defines how new date symbol entries are created. */
DateSymbols _createDateSymbol(Map map) {
return new DateSymbols.deserializeFromMap(map);
-}
+}
« no previous file with comments | « no previous file | pkg/intl/lib/src/http_request_data_reader.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698