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

Unified Diff: runtime/vm/raw_object_snapshot.cc

Issue 11028145: Changed StackZone and ApiZone to be containers for Zone. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rewrote ApiScope unwinding functions, in-lined them. 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
Index: runtime/vm/raw_object_snapshot.cc
diff --git a/runtime/vm/raw_object_snapshot.cc b/runtime/vm/raw_object_snapshot.cc
index 55a8e97a55954fe426a9f2ff47f17705df3df18e..842b1a503fe77941c2034166a13747c38f121c94 100644
--- a/runtime/vm/raw_object_snapshot.cc
+++ b/runtime/vm/raw_object_snapshot.cc
@@ -23,7 +23,7 @@ namespace dart {
static uword BigintAllocator(intptr_t size) {
- StackZone* zone = Isolate::Current()->current_zone();
+ Zone* zone = Isolate::Current()->current_zone();
return zone->AllocUnsafe(size);
}

Powered by Google App Engine
This is Rietveld 408576698