| Index: runtime/vm/pages.h
 | 
| diff --git a/runtime/vm/pages.h b/runtime/vm/pages.h
 | 
| index 729e94f6a47f36744d6c13629804573d5ce2112a..aaa675e2155eeb6d4dca18ad68ccc15946b6542d 100644
 | 
| --- a/runtime/vm/pages.h
 | 
| +++ b/runtime/vm/pages.h
 | 
| @@ -60,8 +60,12 @@ class HeapPage {
 | 
|    }
 | 
|  
 | 
|    // These return NULL on OOM.
 | 
| -  static HeapPage* Initialize(VirtualMemory* memory, PageType type);
 | 
| -  static HeapPage* Allocate(intptr_t size_in_words, PageType type);
 | 
| +  static HeapPage* Initialize(VirtualMemory* memory,
 | 
| +                              PageType type,
 | 
| +                              const char* name);
 | 
| +  static HeapPage* Allocate(intptr_t size_in_words,
 | 
| +                            PageType type,
 | 
| +                            const char* name);
 | 
|  
 | 
|    // Deallocate the virtual memory backing this page. The page pointer to this
 | 
|    // page becomes immediately inaccessible.
 | 
| 
 |