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

Unified Diff: runtime/bin/builtin_nolib.cc

Issue 10332109: Make the crypto library an official dart:crypto library. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix long line Created 8 years, 7 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 | « runtime/bin/builtin.cc ('k') | runtime/bin/crypto_sources.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/builtin_nolib.cc
diff --git a/runtime/bin/builtin_nolib.cc b/runtime/bin/builtin_nolib.cc
index fa15816547b6f26c5427b98fc16abf356c887a49..f4e30dd39624bf6f470658c7d83b896cc9e9fa48 100644
--- a/runtime/bin/builtin_nolib.cc
+++ b/runtime/bin/builtin_nolib.cc
@@ -27,6 +27,9 @@ Dart_Handle Builtin::LoadLibrary(BuiltinLibraryId id) {
case kBuiltinLibrary:
url = Dart_NewString(DartUtils::kBuiltinLibURL);
break;
+ case kCryptoLibrary:
+ url = Dart_NewString(DartUtils::kCryptoLibURL);
+ break;
case kIOLibrary:
url = Dart_NewString(DartUtils::kIOLibURL);
break;
« no previous file with comments | « runtime/bin/builtin.cc ('k') | runtime/bin/crypto_sources.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698