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

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

Issue 670933004: Fix a couple of Dart style naming violations in Intl (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Review fixes Created 6 years, 2 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 | « pkg/intl/bin/generate_from_arb.dart ('k') | 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 4c54147c2792538cdbb63ee165915fbf68e1f907..4f724f86a0397f3f2867571b6d1778788e5ce18f 100644
--- a/pkg/intl/lib/date_symbol_data_http_request.dart
+++ b/pkg/intl/lib/date_symbol_data_http_request.dart
@@ -26,10 +26,10 @@ export 'src/data/dates/locale_list.dart';
* "http://localhost:8000/dates/"
*/
Future initializeDateFormatting(String locale, String url) {
- var reader = new HTTPRequestDataReader('${url}symbols/');
+ var reader = new HttpRequestDataReader('${url}symbols/');
initializeDateSymbols(() => new LazyLocaleData(
reader, _createDateSymbol, availableLocalesForDateFormatting));
- var reader2 = new HTTPRequestDataReader('${url}patterns/');
+ var reader2 = new HttpRequestDataReader('${url}patterns/');
initializeDatePatterns(() => new LazyLocaleData(
reader2, (x) => x, availableLocalesForDateFormatting));
var actualLocale = Intl.verifiedLocale(locale,
« no previous file with comments | « pkg/intl/bin/generate_from_arb.dart ('k') | pkg/intl/lib/src/http_request_data_reader.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698