Bug 193933

Summary: Use lambdas instead of member pointer functions for TransactionOperationImpl
Product: WebKit Reporter: Alex Christensen <achristensen>
Component: New BugsAssignee: Alex Christensen <achristensen>
Status: RESOLVED FIXED    
Severity: Normal CC: alecflett, beidson, ews-watchlist, jsbell, thorton, webkit-bug-importer
Priority: P2 Keywords: InRadar
Version: WebKit Nightly Build   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Patch thorton: review+

Description Alex Christensen 2019-01-28 16:10:12 PST
Use lambdas instead of member pointer functions for TransactionOperationImpl
Comment 1 Alex Christensen 2019-01-28 16:11:51 PST
Created attachment 360396 [details]
Patch
Comment 2 Tim Horton 2019-01-28 17:58:48 PST
Comment on attachment 360396 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=360396&action=review

> Source/WebCore/Modules/indexeddb/IDBTransaction.cpp:-1299
> -    scheduleOperation(IDBClient::createTransactionOperation(*this, &IDBTransaction::didDeleteIndexOnServer, &IDBTransaction::deleteIndexOnServer, objectStoreIdentifier, indexName));

Seems so weird in all of these that the "did" comes after the "do"
Comment 3 Alex Christensen 2019-01-29 08:40:02 PST
http://trac.webkit.org/r240658
Comment 4 Radar WebKit Bug Importer 2019-01-29 08:40:28 PST
<rdar://problem/47633376>
Comment 5 Alex Christensen 2019-01-29 08:45:24 PST
That is strange indeed.