diff options
Diffstat (limited to 'Source/WebKit/chromium/public/WebIDBDatabase.h')
| -rw-r--r-- | Source/WebKit/chromium/public/WebIDBDatabase.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/WebKit/chromium/public/WebIDBDatabase.h b/Source/WebKit/chromium/public/WebIDBDatabase.h index a4932ee28..f02bbf44c 100644 --- a/Source/WebKit/chromium/public/WebIDBDatabase.h +++ b/Source/WebKit/chromium/public/WebIDBDatabase.h @@ -56,6 +56,7 @@ public: return 0; } virtual void deleteObjectStore(const WebString& name, const WebIDBTransaction& transaction, WebExceptionCode& ec) { WEBKIT_ASSERT_NOT_REACHED(); } + virtual void deleteObjectStore(long long objectStoreId, const WebIDBTransaction& transaction, WebExceptionCode& ec) { WEBKIT_ASSERT_NOT_REACHED(); } virtual void setVersion(const WebString& version, WebIDBCallbacks* callbacks, WebExceptionCode&) { WEBKIT_ASSERT_NOT_REACHED(); } // Transfers ownership of the WebIDBTransaction to the caller. virtual WebIDBTransaction* transaction(const WebDOMStringList& names, unsigned short mode, WebExceptionCode& ec) @@ -63,6 +64,11 @@ public: WEBKIT_ASSERT_NOT_REACHED(); return 0; } + virtual WebIDBTransaction* transaction(const WebVector<long long>&, unsigned short mode) + { + WEBKIT_ASSERT_NOT_REACHED(); + return 0; + } virtual void close() { WEBKIT_ASSERT_NOT_REACHED(); } virtual void forceClose() { WEBKIT_ASSERT_NOT_REACHED(); } |
