| Index: Source/modules/performance/WorkerPerformance.h
 | 
| diff --git a/Source/modules/performance/WorkerPerformance.h b/Source/modules/performance/WorkerPerformance.h
 | 
| index c842fd0622bcb9a1da0266eed1f1213744399bd5..3cf221249172c81c49aa27fe2c46b7769d19ce84 100644
 | 
| --- a/Source/modules/performance/WorkerPerformance.h
 | 
| +++ b/Source/modules/performance/WorkerPerformance.h
 | 
| @@ -41,13 +41,12 @@ namespace blink {
 | 
|  class ExecutionContext;
 | 
|  class MemoryInfo;
 | 
|  
 | 
| -class WorkerPerformance : public GarbageCollectedFinalized<WorkerPerformance>, public ScriptWrappable {
 | 
| +class WorkerPerformance FINAL : public GarbageCollected<WorkerPerformance>, public ScriptWrappable {
 | 
|  public:
 | 
|      static WorkerPerformance* create()
 | 
|      {
 | 
|          return new WorkerPerformance();
 | 
|      }
 | 
| -    ~WorkerPerformance();
 | 
|  
 | 
|      double now(ExecutionContext*) const;
 | 
|      PassRefPtrWillBeRawPtr<MemoryInfo> memory() const;
 | 
| 
 |