| Index: src/isolate.h | 
| diff --git a/src/isolate.h b/src/isolate.h | 
| index 5b7b3e73c89b94c9575926123656b4aa14114fff..e6f6d167f15e0a095b9ddf37dbec0959e79ddbb1 100644 | 
| --- a/src/isolate.h | 
| +++ b/src/isolate.h | 
| @@ -68,6 +68,7 @@ class Factory; | 
| class FunctionInfoListener; | 
| class HandleScopeImplementer; | 
| class HeapProfiler; | 
| +class HStatistics; | 
| class HTracer; | 
| class InlineRuntimeFunctionsTable; | 
| class NoAllocationStringAllocator; | 
| @@ -373,6 +374,7 @@ typedef List<HeapObject*, PreallocatedStorageAllocationPolicy> DebugObjectCache; | 
| V(CpuProfiler*, cpu_profiler, NULL)                                          \ | 
| V(HeapProfiler*, heap_profiler, NULL)                                        \ | 
| V(bool, observer_delivery_pending, false)                                    \ | 
| +  V(HStatistics*, hstatistics, NULL)                                           \ | 
| V(HTracer*, htracer, NULL)                                                   \ | 
| ISOLATE_DEBUGGER_INIT_LIST(V) | 
|  | 
| @@ -1102,6 +1104,7 @@ class Isolate { | 
| return sweeper_thread_; | 
| } | 
|  | 
| +  HStatistics* GetHStatistics(); | 
| HTracer* GetHTracer(); | 
|  | 
| private: | 
|  |