Bug 193933 - Use lambdas instead of member pointer functions for TransactionOperationImpl
Summary: Use lambdas instead of member pointer functions for TransactionOperationImpl
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: New Bugs (show other bugs)
Version: WebKit Nightly Build
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Alex Christensen
URL:
Keywords: InRadar
Depends on:
Blocks:
 
Reported: 2019-01-28 16:10 PST by Alex Christensen
Modified: 2019-01-29 08:45 PST (History)
6 users (show)

See Also:


Attachments
Patch (28.98 KB, patch)
2019-01-28 16:11 PST, Alex Christensen
thorton: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
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.