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

Unified Diff: runtime/bin/builtin.cc

Issue 12114021: Use browsers JSON.parse for parsing JSON. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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: runtime/bin/builtin.cc
diff --git a/runtime/bin/builtin.cc b/runtime/bin/builtin.cc
index f9218dfa06975c0fb829a44ad5c4379cab4f96b9..da2ced1f993e014d64be5d59047ad29e832c049d 100644
--- a/runtime/bin/builtin.cc
+++ b/runtime/bin/builtin.cc
@@ -13,7 +13,8 @@
Builtin::builtin_lib_props Builtin::builtin_libraries_[] = {
/* { url_, source_, patch_url_, patch_source_, has_natives_ } */
{ DartUtils::kBuiltinLibURL, builtin_source_, NULL, NULL, true },
- { DartUtils::kJsonLibURL, json_source_, NULL, NULL, false },
+ { DartUtils::kJsonLibURL, json_source_,
+ DartUtils::kJsonLibPatchURL, json_patch_, false },
{ DartUtils::kUriLibURL, uri_source_, NULL, NULL, false },
{ DartUtils::kCryptoLibURL, crypto_source_, NULL, NULL, false },
{ DartUtils::kIOLibURL, io_source_,

Powered by Google App Engine
This is Rietveld 408576698