| Index: third_party/WebKit/Source/platform/heap/ThreadState.h
 | 
| diff --git a/third_party/WebKit/Source/platform/heap/ThreadState.h b/third_party/WebKit/Source/platform/heap/ThreadState.h
 | 
| index 6d3bd0a7d0a3e62ecad62489ccb30a7c70f8ea5b..7c2d093e0b64c0e2e77d8b77f1f3a53c112be567 100644
 | 
| --- a/third_party/WebKit/Source/platform/heap/ThreadState.h
 | 
| +++ b/third_party/WebKit/Source/platform/heap/ThreadState.h
 | 
| @@ -106,7 +106,7 @@ public:                                             \
 | 
|  static bool invokePreFinalizer(void* object)        \
 | 
|  {                                                   \
 | 
|      Class* self = reinterpret_cast<Class*>(object); \
 | 
| -    if (Heap::isHeapObjectAlive(self))              \
 | 
| +    if (ThreadHeap::isHeapObjectAlive(self))              \
 | 
|          return false;                               \
 | 
|      self->Class::preFinalizer();                    \
 | 
|      return true;                                    \
 | 
| @@ -255,7 +255,7 @@ public:
 | 
|      //
 | 
|      // 1) All threads park at safe points.
 | 
|      // 2) The GCing thread calls preGC() for all ThreadStates.
 | 
| -    // 3) The GCing thread calls Heap::collectGarbage().
 | 
| +    // 3) The GCing thread calls ThreadHeap::collectGarbage().
 | 
|      //    This does marking but doesn't do sweeping.
 | 
|      // 4) The GCing thread calls postGC() for all ThreadStates.
 | 
|      // 5) The GCing thread resume all threads.
 | 
| 
 |