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

Unified Diff: runtime/vm/handles.cc

Issue 269023005: - Ensure that BaseIsolate is only used to break the header include cycles. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 7 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/handles.cc
===================================================================
--- runtime/vm/handles.cc (revision 35767)
+++ runtime/vm/handles.cc (working copy)
@@ -80,7 +80,7 @@
}
-HandleScope::HandleScope(BaseIsolate* isolate) : StackResource(isolate) {
+HandleScope::HandleScope(Isolate* isolate) : StackResource(isolate) {
ASSERT(isolate->no_handle_scope_depth() == 0);
VMHandles* handles = isolate->current_zone()->handles();
ASSERT(handles != NULL);
@@ -109,7 +109,7 @@
#if defined(DEBUG)
-NoHandleScope::NoHandleScope(BaseIsolate* isolate) : StackResource(isolate) {
+NoHandleScope::NoHandleScope(Isolate* isolate) : StackResource(isolate) {
isolate->IncrementNoHandleScopeDepth();
}
« runtime/vm/allocation.h ('K') | « runtime/vm/handles.h ('k') | runtime/vm/timer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698