| Index: Source/modules/indexeddb/IDBFactory.h
 | 
| diff --git a/Source/modules/indexeddb/IDBFactory.h b/Source/modules/indexeddb/IDBFactory.h
 | 
| index bf251ae7d718bca5a4b9b602f97c7bb9a8ccfd00..a3588cdbd2ebcc06a29e01b3c4066491bdaaaf0c 100644
 | 
| --- a/Source/modules/indexeddb/IDBFactory.h
 | 
| +++ b/Source/modules/indexeddb/IDBFactory.h
 | 
| @@ -41,13 +41,12 @@ class IDBKey;
 | 
|  class IDBKeyRange;
 | 
|  class ExecutionContext;
 | 
|  
 | 
| -class IDBFactory : public GarbageCollectedFinalized<IDBFactory>, public ScriptWrappable {
 | 
| +class IDBFactory FINAL : public GarbageCollected<IDBFactory>, public ScriptWrappable {
 | 
|  public:
 | 
|      static IDBFactory* create(IndexedDBClient* client)
 | 
|      {
 | 
|          return new IDBFactory(client);
 | 
|      }
 | 
| -    ~IDBFactory();
 | 
|      void trace(Visitor*);
 | 
|  
 | 
|      IDBRequest* getDatabaseNames(ScriptState*, ExceptionState&);
 | 
| 
 |