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

Unified Diff: vm/handles.h

Issue 10008030: Inline the StackResource constructor/destructor. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years, 8 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 | « vm/base_isolate.h ('k') | vm/handles.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/handles.h
===================================================================
--- vm/handles.h (revision 6287)
+++ vm/handles.h (working copy)
@@ -266,7 +266,7 @@
// }
class HandleScope : public StackResource {
public:
- explicit HandleScope(Isolate* isolate);
+ explicit HandleScope(BaseIsolate* isolate);
~HandleScope();
private:
@@ -298,7 +298,7 @@
#if defined(DEBUG)
class NoHandleScope : public StackResource {
public:
- explicit NoHandleScope(Isolate* isolate);
+ explicit NoHandleScope(BaseIsolate* isolate);
~NoHandleScope();
private:
@@ -307,7 +307,7 @@
#else // defined(DEBUG)
class NoHandleScope : public ValueObject {
public:
- explicit NoHandleScope(Isolate* isolate) { }
+ explicit NoHandleScope(BaseIsolate* isolate) { }
~NoHandleScope() { }
private:
« no previous file with comments | « vm/base_isolate.h ('k') | vm/handles.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698