[Webkit-unassigned] [Bug 102736] New: IndexedDB: migrate backend Index calls to use transaction ids

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


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

           Summary: IndexedDB: migrate backend Index calls to use
                    transaction ids
           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
        Depends on: 102732


Rather than calling through IDBTransactionBackendInterface, backend index calls should just call through IDBDatabase with a transaction id

specifically: (leaving out the details of request/callback hookup/etc)
* IDBIndexBackendInterface::openCursor() becomes 
  IDBDatabaseBackendInterface::openCursor(transaction_id, objectstore_id, index_id, direction, key=false);
* IDBIndexBackendInterface::openKeyCursor() becomes 
  IDBDatabaseBackendInterface::openCursor(transaction_id, objectstore_id, index_id, direction, key=true);
* IDBIndexBackendInterface::count() becomes 
  IDBDatabaseBackendInterface::count(transaction_id, objectstore_id, index_id, keyRange);
* IDBIndexBackendInterface::get() becomes 
  IDBDatabaseBackendInterface::get(transaction_id, objectstore_id, index_id, key=false);
* IDBIndexBackendInterface::getKey() becomes 
  IDBDatabaseBackendInterface::getKey(transaction_id, objectstore_id, index_id, key=false);

-- 
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