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

Unified Diff: runtime/vm/dart.cc

Issue 11040062: Renamed Zone->StackZone, BaseZone->Zone, in preparation for changing isolate->get_zone() to return … (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: code review changes Created 8 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
« no previous file with comments | « runtime/vm/code_generator.cc ('k') | runtime/vm/dart_api_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/dart.cc
diff --git a/runtime/vm/dart.cc b/runtime/vm/dart.cc
index 199fd137367f5c3e1efd92de2ad68f738569dba9..99e2886a46d482a0cb73d713f407df54e438b5b0 100644
--- a/runtime/vm/dart.cc
+++ b/runtime/vm/dart.cc
@@ -68,7 +68,7 @@ bool Dart::InitOnce(Dart_IsolateCreateCallback create,
ASSERT(vm_isolate_ == NULL);
ASSERT(Flags::Initialized());
vm_isolate_ = Isolate::Init("vm-isolate");
- Zone zone(vm_isolate_);
+ StackZone zone(vm_isolate_);
HandleScope handle_scope(vm_isolate_);
Heap::Init(vm_isolate_);
ObjectStore::Init(vm_isolate_);
@@ -132,7 +132,7 @@ RawError* Dart::InitializeIsolate(const uint8_t* snapshot_buffer, void* data) {
TIMERSCOPE(time_isolate_initialization);
Isolate* isolate = Isolate::Current();
ASSERT(isolate != NULL);
- Zone zone(isolate);
+ StackZone zone(isolate);
HandleScope handle_scope(isolate);
Heap::Init(isolate);
ObjectStore::Init(isolate);
« no previous file with comments | « runtime/vm/code_generator.cc ('k') | runtime/vm/dart_api_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698