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

Unified Diff: runtime/vm/native_entry.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: 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/native_entry.h
diff --git a/runtime/vm/native_entry.h b/runtime/vm/native_entry.h
index 7e5559935e2ea98b104fab9050471babdad3cddf..5788faff01b0b6563d2c7be6bf90d84c4860834d 100644
--- a/runtime/vm/native_entry.h
+++ b/runtime/vm/native_entry.h
@@ -39,7 +39,7 @@ typedef void (*NativeFunction)(NativeArguments* arguments);
ASSERT(arguments->Count() == argument_count); \
if (FLAG_trace_natives) OS::Print("Calling native: %s\n", ""#name); \
{ \
- Zone zone(arguments->isolate()); \
+ StackZone zone(arguments->isolate()); \
HANDLESCOPE(arguments->isolate()); \
arguments->SetReturnUnsafe( \
DN_Helper##name(arguments->isolate(), arguments)); \

Powered by Google App Engine
This is Rietveld 408576698