| 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:
 | 
| 
 |