From a94275402997c11dd2e778633dacf4b7e630a35d Mon Sep 17 00:00:00 2001 From: Ben Murdoch Date: Fri, 22 Oct 2010 13:02:20 +0100 Subject: Merge WebKit at r70209: Initial merge by Git Change-Id: Id23a68efa36e9d1126bcce0b137872db00892c8e --- WebCore/storage/IDBObjectStoreBackendInterface.h | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'WebCore/storage/IDBObjectStoreBackendInterface.h') diff --git a/WebCore/storage/IDBObjectStoreBackendInterface.h b/WebCore/storage/IDBObjectStoreBackendInterface.h index c19855c..8763d90 100644 --- a/WebCore/storage/IDBObjectStoreBackendInterface.h +++ b/WebCore/storage/IDBObjectStoreBackendInterface.h @@ -26,6 +26,7 @@ #ifndef IDBObjectStoreBackendInterface_h #define IDBObjectStoreBackendInterface_h +#include "ExceptionCode.h" #include "PlatformString.h" #include @@ -49,15 +50,15 @@ public: virtual String keyPath() const = 0; virtual PassRefPtr indexNames() const = 0; - virtual void get(PassRefPtr key, PassRefPtr, IDBTransactionBackendInterface* transaction) = 0; - virtual void put(PassRefPtr value, PassRefPtr key, bool addOnly, PassRefPtr) = 0; - virtual void remove(PassRefPtr key, PassRefPtr) = 0; + virtual void get(PassRefPtr, PassRefPtr, IDBTransactionBackendInterface*, ExceptionCode&) = 0; + virtual void put(PassRefPtr, PassRefPtr, bool addOnly, PassRefPtr, IDBTransactionBackendInterface*, ExceptionCode&) = 0; + virtual void remove(PassRefPtr, PassRefPtr, IDBTransactionBackendInterface*, ExceptionCode&) = 0; - virtual void createIndex(const String& name, const String& keyPath, bool unique, PassRefPtr) = 0; - virtual PassRefPtr index(const String& name) = 0; - virtual void removeIndex(const String& name, PassRefPtr) = 0; + virtual PassRefPtr createIndex(const String& name, const String& keyPath, bool unique, IDBTransactionBackendInterface*, ExceptionCode&) = 0; + virtual PassRefPtr index(const String& name, ExceptionCode&) = 0; + virtual void removeIndex(const String& name, IDBTransactionBackendInterface*, ExceptionCode&) = 0; - virtual void openCursor(PassRefPtr, unsigned short direction, PassRefPtr) = 0; + virtual void openCursor(PassRefPtr, unsigned short direction, PassRefPtr, IDBTransactionBackendInterface*, ExceptionCode&) = 0; }; } // namespace WebCore -- cgit v1.1