| Index: src/heap.h
 | 
| diff --git a/src/heap.h b/src/heap.h
 | 
| index 85af3c93adab9742de436f2fd338a2f5b2428f26..754b5588e05f89b11c8fffc7d77df82d5d29872a 100644
 | 
| --- a/src/heap.h
 | 
| +++ b/src/heap.h
 | 
| @@ -2146,7 +2146,7 @@ class Heap {
 | 
|  
 | 
|    MemoryChunk* chunks_queued_for_free_;
 | 
|  
 | 
| -  Mutex relocation_mutex_;
 | 
| +  base::Mutex relocation_mutex_;
 | 
|  
 | 
|    int gc_callbacks_depth_;
 | 
|  
 | 
| @@ -2526,12 +2526,12 @@ class GCTracer BASE_EMBEDDED {
 | 
|      Scope(GCTracer* tracer, ScopeId scope)
 | 
|          : tracer_(tracer),
 | 
|          scope_(scope) {
 | 
| -      start_time_ = OS::TimeCurrentMillis();
 | 
| +      start_time_ = base::OS::TimeCurrentMillis();
 | 
|      }
 | 
|  
 | 
|      ~Scope() {
 | 
|        ASSERT(scope_ < kNumberOfScopes);  // scope_ is unsigned.
 | 
| -      tracer_->scopes_[scope_] += OS::TimeCurrentMillis() - start_time_;
 | 
| +      tracer_->scopes_[scope_] += base::OS::TimeCurrentMillis() - start_time_;
 | 
|      }
 | 
|  
 | 
|     private:
 | 
| 
 |