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

Unified 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: Added library now working (thanks fschneider). Back to the main content. 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
Index: sdk/lib/core/core.dart
diff --git a/sdk/lib/core/core.dart b/sdk/lib/core/core.dart
index a33c8fa30b1f1c6a5c58c029276218cc788724aa..d6c20c5fec742a715b48c32d333b1496b62b5e48 100644
--- a/sdk/lib/core/core.dart
+++ b/sdk/lib/core/core.dart
@@ -158,6 +158,9 @@ import "dart:_internal" as internal show Symbol;
import "dart:convert" show UTF8, LATIN1, Encoding;
import "dart:math" show Random; // Used by List.shuffle.
import "dart:async" show Stream, Future; // Used by Resource.
+import "dart:uri" show Uri;
+
+export "dart:uri" show Uri;
part "annotations.dart";
part "bool.dart";
@@ -192,4 +195,3 @@ part "string_buffer.dart";
part "string_sink.dart";
part "symbol.dart";
part "type.dart";
-part "uri.dart";

Powered by Google App Engine
This is Rietveld 408576698