| Index: Source/wtf/Vector.h | 
| diff --git a/Source/wtf/Vector.h b/Source/wtf/Vector.h | 
| index 5f0fd4be0ea7e6eac897108f25ca31afc3741af0..836f6fba861a7b2f98f67ca6be6e8e31481003bc 100644 | 
| --- a/Source/wtf/Vector.h | 
| +++ b/Source/wtf/Vector.h | 
| @@ -1143,10 +1143,10 @@ static const size_t kInitialVectorSize = WTF_VECTOR_INITIAL_SIZE; | 
| const T* bufferEnd = buffer() + size(); | 
| if (VectorTraits<T>::needsTracing) { | 
| for (const T* bufferEntry = bufferBegin; bufferEntry != bufferEnd; bufferEntry++) | 
| -                Allocator::template visitWith<T, VectorTraits<T> >(visitor, *const_cast<T*>(bufferEntry)); | 
| +                Allocator::template trace<T, VectorTraits<T> >(visitor, *const_cast<T*>(bufferEntry)); | 
| } | 
| if (this->hasOutOfLineBuffer()) | 
| -            Allocator::markUsingGCInfo(visitor, buffer()); | 
| +            Allocator::markNoTracing(visitor, buffer()); | 
| } | 
|  | 
| } // namespace WTF | 
|  |