| Index: Source/modules/indexeddb/IDBTransaction.h
 | 
| diff --git a/Source/modules/indexeddb/IDBTransaction.h b/Source/modules/indexeddb/IDBTransaction.h
 | 
| index 4019aeedf34050c94a82d221f267b7ddcf07974a..f1d29a1f71d5da88c82876a3c6121054cfbc7d6a 100644
 | 
| --- a/Source/modules/indexeddb/IDBTransaction.h
 | 
| +++ b/Source/modules/indexeddb/IDBTransaction.h
 | 
| @@ -98,7 +98,7 @@ public:
 | 
|      virtual ExecutionContext* executionContext() const OVERRIDE;
 | 
|  
 | 
|      using EventTarget::dispatchEvent;
 | 
| -    virtual bool dispatchEvent(PassRefPtr<Event>) OVERRIDE;
 | 
| +    virtual bool dispatchEvent(PassRefPtrWillBeRawPtr<Event>) OVERRIDE;
 | 
|  
 | 
|      // ActiveDOMObject
 | 
|      virtual bool hasPendingActivity() const OVERRIDE;
 | 
| @@ -107,7 +107,7 @@ public:
 | 
|  private:
 | 
|      IDBTransaction(ExecutionContext*, int64_t, const Vector<String>&, blink::WebIDBDatabase::TransactionMode, IDBDatabase*, IDBOpenDBRequest*, const IDBDatabaseMetadata&);
 | 
|  
 | 
| -    void enqueueEvent(PassRefPtr<Event>);
 | 
| +    void enqueueEvent(PassRefPtrWillBeRawPtr<Event>);
 | 
|  
 | 
|      enum State {
 | 
|          Inactive, // Created or started, but not in an event callback
 | 
| 
 |