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

Unified Diff: runtime/vm/bootstrap.cc

Issue 23554004: Made old dart:json library use convert to parse JSON. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addres review comments. Created 7 years, 4 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/vm/bootstrap.h ('k') | runtime/vm/vm.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/bootstrap.cc
diff --git a/runtime/vm/bootstrap.cc b/runtime/vm/bootstrap.cc
index 4c8aee0d29e24223608214a0831458d022f08ed9..c6ab4940c45c79149e1e2453945615fb49ea962e 100644
--- a/runtime/vm/bootstrap.cc
+++ b/runtime/vm/bootstrap.cc
@@ -41,7 +41,7 @@ static bootstrap_lib_props bootstrap_libraries[] = {
INIT_LIBRARY(ObjectStore::kConvert,
convert,
Bootstrap::convert_source_paths_,
- NULL),
+ Bootstrap::convert_patch_paths_),
INIT_LIBRARY(ObjectStore::kCollection,
collection,
Bootstrap::collection_source_paths_,
@@ -57,7 +57,7 @@ static bootstrap_lib_props bootstrap_libraries[] = {
INIT_LIBRARY(ObjectStore::kJson,
json,
Bootstrap::json_source_paths_,
- Bootstrap::json_patch_paths_),
+ NULL),
INIT_LIBRARY(ObjectStore::kMath,
math,
Bootstrap::math_source_paths_,
« no previous file with comments | « runtime/vm/bootstrap.h ('k') | runtime/vm/vm.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698