| Index: third_party/WebKit/Source/web/WebHeap.cpp
 | 
| diff --git a/third_party/WebKit/Source/web/WebHeap.cpp b/third_party/WebKit/Source/web/WebHeap.cpp
 | 
| index 9556cd8dee04ac1a114d8e2f7e10bc40c63e41e0..257cef8e49e2ddaa744330613be778d6a1939d93 100644
 | 
| --- a/third_party/WebKit/Source/web/WebHeap.cpp
 | 
| +++ b/third_party/WebKit/Source/web/WebHeap.cpp
 | 
| @@ -38,7 +38,7 @@ namespace blink {
 | 
|  WebHeap::SafePointScope::SafePointScope()
 | 
|  {
 | 
|      RELEASE_ASSERT(!ThreadState::current()->isAtSafePoint());
 | 
| -    ThreadState::current()->enterSafePoint(ThreadState::HeapPointersOnStack, this);
 | 
| +    ThreadState::current()->enterSafePoint(BlinkGC::HeapPointersOnStack, this);
 | 
|  }
 | 
|  
 | 
|  WebHeap::SafePointScope::~SafePointScope()
 | 
| @@ -48,7 +48,7 @@ WebHeap::SafePointScope::~SafePointScope()
 | 
|  
 | 
|  void WebHeap::collectGarbageForTesting()
 | 
|  {
 | 
| -    Heap::collectGarbage(ThreadState::HeapPointersOnStack, ThreadState::GCWithSweep, Heap::ForcedGC);
 | 
| +    Heap::collectGarbage(BlinkGC::HeapPointersOnStack, BlinkGC::GCWithSweep, Heap::ForcedGC);
 | 
|  }
 | 
|  
 | 
|  void WebHeap::collectAllGarbageForTesting()
 | 
| 
 |