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

Unified Diff: runtime/vm/handles.h

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.h
===================================================================
--- runtime/vm/handles.h (revision 35767)
+++ runtime/vm/handles.h (working copy)
@@ -297,7 +297,7 @@
// }
class HandleScope : public StackResource {
public:
- explicit HandleScope(BaseIsolate* isolate);
+ explicit HandleScope(Isolate* isolate);
~HandleScope();
private:
@@ -329,7 +329,7 @@
#if defined(DEBUG)
class NoHandleScope : public StackResource {
public:
- explicit NoHandleScope(BaseIsolate* isolate);
+ explicit NoHandleScope(Isolate* isolate);
NoHandleScope();
~NoHandleScope();
@@ -339,7 +339,7 @@
#else // defined(DEBUG)
class NoHandleScope : public ValueObject {
public:
- explicit NoHandleScope(BaseIsolate* isolate) { }
+ explicit NoHandleScope(Isolate* isolate) { }
NoHandleScope() { }
~NoHandleScope() { }
« runtime/vm/allocation.h ('K') | « runtime/vm/allocation.h ('k') | runtime/vm/handles.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698