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

Unified Diff: runtime/vm/base_isolate.h

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/assembler.cc ('k') | runtime/vm/benchmark_test.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/base_isolate.h
diff --git a/runtime/vm/base_isolate.h b/runtime/vm/base_isolate.h
index f52c1b0a2a559f4c05f9b0f950e5fd8c08a1f4c8..090f1ce0a7c339ede4baa51b7c0d354122ade3b2 100644
--- a/runtime/vm/base_isolate.h
+++ b/runtime/vm/base_isolate.h
@@ -9,7 +9,7 @@ namespace dart {
class HandleScope;
class StackResource;
-class Zone;
+class StackZone;
// A BaseIsolate contains just enough functionality to allocate
// StackResources. This allows us to inline the StackResource
@@ -19,8 +19,8 @@ class BaseIsolate {
StackResource* top_resource() const { return top_resource_; }
void set_top_resource(StackResource* value) { top_resource_ = value; }
- Zone* current_zone() const { return current_zone_; }
- void set_current_zone(Zone* zone) { current_zone_ = zone; }
+ StackZone* current_zone() const { return current_zone_; }
+ void set_current_zone(StackZone* zone) { current_zone_ = zone; }
HandleScope* top_handle_scope() const {
#if defined(DEBUG)
@@ -102,7 +102,7 @@ class BaseIsolate {
}
StackResource* top_resource_;
- Zone* current_zone_;
+ StackZone* current_zone_;
#if defined(DEBUG)
HandleScope* top_handle_scope_;
int32_t no_handle_scope_depth_;
« no previous file with comments | « runtime/vm/assembler.cc ('k') | runtime/vm/benchmark_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698