 Chromium Code Reviews
 Chromium Code Reviews Issue 10422005:
  Merge 116562 - IndexedDB: call abort handler when there are problems committing  (Closed) 
  Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1132/
    
  
    Issue 10422005:
  Merge 116562 - IndexedDB: call abort handler when there are problems committing  (Closed) 
  Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1132/| Index: Source/WebCore/Modules/indexeddb/IDBBackingStore.h | 
| =================================================================== | 
| --- Source/WebCore/Modules/indexeddb/IDBBackingStore.h (revision 118040) | 
| +++ Source/WebCore/Modules/indexeddb/IDBBackingStore.h (working copy) | 
| @@ -113,7 +113,7 @@ | 
| public: | 
| virtual ~Transaction() { } | 
| virtual void begin() = 0; | 
| - virtual void commit() = 0; | 
| + virtual bool commit() = 0; | 
| virtual void rollback() = 0; | 
| }; | 
| virtual PassRefPtr<Transaction> createTransaction() = 0; |