[Webkit-unassigned] [Bug 102742] New: IndexedDB: stub out Index and ObjectStore calls in IDBDatabaseBackend

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Nov 19 16:48:06 PST 2012


https://bugs.webkit.org/show_bug.cgi?id=102742

           Summary: IndexedDB: stub out Index and ObjectStore calls in
                    IDBDatabaseBackend
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Unspecified
        OS/Version: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: WebCore Misc.
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: alecflett at chromium.org


We're going to need:

(leaving out callbacks)

* IDBDatabaseBackendInterface::openCursor(transaction_id, objectstore_id, index_id, keyRange, direction, key);
* IDBDatabaseBackendInterface::count(transaction_id, objectstore_id, index_id, keyRange);
* IDBDatabaseBackendInterface::get(transaction_id, objectstore_id, index_id, keyRange, key=false);
* IDBDatabaseBackendInterface::put(transaction_id, objectstore_id, index_id, key);
* IDBDatabaseBackendInterface::deleteFunction(transaction_id, objectstore_id, keyRange);
* IDBDatabaseBackendInterface::clear(transaction_id, objectstore_id);
* IDBDatabaseBackendInterface::setIndexKeys(transaction_id, objectstore_id, index_ids, index_keys);
* IDBDatabaseBackendInterface::setIndexesReady(transaction_id, objectstore_id, index_ids);

In a few of these (openCursor and get) you can pass -1 as the index_id and pass true/false to key, to get the getKey/openKeyCursor behavior.

We'll likely need more as well, but that covers what is in bug 102741 and bug 102736

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list