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

Unified Diff: src/json-parser.h

Issue 868883002: Remove the dependency of Zone on Isolate (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: All platforms Created 5 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: src/json-parser.h
diff --git a/src/json-parser.h b/src/json-parser.h
index 6d579a74a657e37d54e2e024faca9c45e5aa88c7..d6fe294fccdba33b375055309130cfc937d75986 100644
--- a/src/json-parser.h
+++ b/src/json-parser.h
@@ -32,7 +32,7 @@ class JsonParser BASE_EMBEDDED {
source_length_(source->length()),
isolate_(source->map()->GetHeap()->isolate()),
factory_(isolate_->factory()),
- zone_(isolate_),
+ zone_(),
Michael Starzinger 2015/01/23 14:21:11 nit: Explicit initializer call could be dropped.
danno 2015/01/23 14:45:20 Done.
object_constructor_(isolate_->native_context()->object_function(),
isolate_),
position_(-1) {

Powered by Google App Engine
This is Rietveld 408576698