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

Unified Diff: charted/lib/locale/locale.dart

Issue 1400473008: Roll Observatory packages and add a roll script (Closed) Base URL: git@github.com:dart-lang/observatory_pub_packages.git@master
Patch Set: Created 5 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 | « charted/lib/locale/languages/en_us.dart ('k') | charted/lib/selection/selection.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: charted/lib/locale/locale.dart
diff --git a/charted/lib/locale/locale.dart b/charted/lib/locale/locale.dart
deleted file mode 100644
index 163e8b3c21d794675903854ed3a91394456743c1..0000000000000000000000000000000000000000
--- a/charted/lib/locale/locale.dart
+++ /dev/null
@@ -1,38 +0,0 @@
-//
-// Copyright 2014 Google Inc. All rights reserved.
-//
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file or at
-// https://developers.google.com/open-source/licenses/bsd
-//
-
-library charted.locale;
-
-import 'package:charted/locale/format.dart';
-
-part 'languages/en_us.dart';
-
-abstract class Locale {
- String get identifier;
- String get decimal;
- String get thousands;
- List get grouping;
- List get currency;
-
- String get dateTime;
- String get date;
- String get time;
- List get periods;
-
- List get days;
- List get shortDays;
-
- List get months;
- List get shortMonths;
-
- Locale();
-
- NumberFormat get numberFormat => new NumberFormat(this);
- TimeFormat timeFormat([specifier = null]) =>
- new TimeFormat(specifier, this.identifier);
-}
« no previous file with comments | « charted/lib/locale/languages/en_us.dart ('k') | charted/lib/selection/selection.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698