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

Side by Side Diff: sdk/lib/core/core.dart

Issue 1381033002: Add data-URI support class to dart:core (next to Uri). (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Remove VM assertion that appears to be incorrect. Created 5 years, 1 month 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 /** 5 /**
6 * 6 *
7 * Built-in types, collections, 7 * Built-in types, collections,
8 * and other core functionality for every Dart program. 8 * and other core functionality for every Dart program.
9 * 9 *
10 * This library is automatically imported. 10 * This library is automatically imported.
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 * 148 *
149 * The 149 * The
150 * [Dart Language Specification](http://www.dartlang.org/docs/spec/) 150 * [Dart Language Specification](http://www.dartlang.org/docs/spec/)
151 * provides technical details. 151 * provides technical details.
152 */ 152 */
153 library dart.core; 153 library dart.core;
154 154
155 import "dart:collection"; 155 import "dart:collection";
156 import "dart:_internal" hide Symbol; 156 import "dart:_internal" hide Symbol;
157 import "dart:_internal" as internal show Symbol; 157 import "dart:_internal" as internal show Symbol;
158 import "dart:convert" show UTF8, LATIN1, Encoding; 158 import "dart:convert" show
159 Encoding, ASCII, LATIN1, UTF8,
160 BASE64, StringConversionSink, ChunkedConversionSink;
159 import "dart:math" show Random; // Used by List.shuffle. 161 import "dart:math" show Random; // Used by List.shuffle.
160 import "dart:async" show Stream, Future; // Used by Resource. 162 import "dart:async" show Stream, Future; // Used by Resource.
163 import "dart:typed_data" show Uint8List;
161 164
162 part "annotations.dart"; 165 part "annotations.dart";
163 part "bool.dart"; 166 part "bool.dart";
164 part "comparable.dart"; 167 part "comparable.dart";
165 part "date_time.dart"; 168 part "date_time.dart";
166 part "double.dart"; 169 part "double.dart";
167 part "duration.dart"; 170 part "duration.dart";
168 part "errors.dart"; 171 part "errors.dart";
169 part "exceptions.dart"; 172 part "exceptions.dart";
170 part "expando.dart"; 173 part "expando.dart";
(...skipping 15 matching lines...) Expand all
186 part "set.dart"; 189 part "set.dart";
187 part "sink.dart"; 190 part "sink.dart";
188 part "stacktrace.dart"; 191 part "stacktrace.dart";
189 part "stopwatch.dart"; 192 part "stopwatch.dart";
190 part "string.dart"; 193 part "string.dart";
191 part "string_buffer.dart"; 194 part "string_buffer.dart";
192 part "string_sink.dart"; 195 part "string_sink.dart";
193 part "symbol.dart"; 196 part "symbol.dart";
194 part "type.dart"; 197 part "type.dart";
195 part "uri.dart"; 198 part "uri.dart";
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698