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

Unified Diff: runtime/vm/dart_api_impl.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/dart.cc ('k') | runtime/vm/dart_api_state.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/dart_api_impl.h
diff --git a/runtime/vm/dart_api_impl.h b/runtime/vm/dart_api_impl.h
index 38211bdb1bd6f1b7fbc3735dfee0c80554876995..83416019d87554e6c92e2d40430944562094da04 100644
--- a/runtime/vm/dart_api_impl.h
+++ b/runtime/vm/dart_api_impl.h
@@ -55,13 +55,13 @@ const char* CanonicalFunction(const char* func);
#define DARTSCOPE_NOCHECKS(isolate) \
Isolate* __temp_isolate__ = (isolate); \
ASSERT(__temp_isolate__ != NULL); \
- Zone zone(__temp_isolate__); \
+ StackZone zone(__temp_isolate__); \
HANDLESCOPE(__temp_isolate__);
#define DARTSCOPE(isolate) \
Isolate* __temp_isolate__ = (isolate); \
CHECK_ISOLATE_SCOPE(__temp_isolate__); \
- Zone zone(__temp_isolate__); \
+ StackZone zone(__temp_isolate__); \
HANDLESCOPE(__temp_isolate__);
« no previous file with comments | « runtime/vm/dart.cc ('k') | runtime/vm/dart_api_state.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698