Bug 128964 - Move IndexedDB module, LevelDB code to std::unique_ptr
Summary: Move IndexedDB module, LevelDB code to std::unique_ptr
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: New Bugs (show other bugs)
Version: 528+ (Nightly build)
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Zan Dobersek
URL:
Keywords:
Depends on:
Blocks: 128007
  Show dependency treegraph
 
Reported: 2014-02-18 02:38 PST by Zan Dobersek
Modified: 2014-02-18 14:03 PST (History)
3 users (show)

See Also:


Attachments
Patch (45.29 KB, patch)
2014-02-18 02:39 PST, Zan Dobersek
kling: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Zan Dobersek 2014-02-18 02:38:03 PST
Move IndexedDB module, LevelDB code to std::unique_ptr
Comment 1 Zan Dobersek 2014-02-18 02:39:11 PST
Created attachment 224488 [details]
Patch
Comment 2 Andreas Kling 2014-02-18 10:32:34 PST
Comment on attachment 224488 [details]
Patch

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

r=me

> Source/WebCore/Modules/indexeddb/IDBPendingDeleteCall.h:38
> +    IDBPendingDeleteCall(PassRefPtr<IDBCallbacks> callbacks)

explicit

> Source/WebCore/platform/leveldb/LevelDBDatabase.cpp:266
> +    IteratorImpl(std::unique_ptr<leveldb::Iterator>);

explicit

> Source/WebCore/platform/leveldb/LevelDBTransaction.h:102
> +        TreeIterator(LevelDBTransaction*);

explicit

> Source/WebCore/platform/leveldb/LevelDBTransaction.h:124
> +        TransactionIterator(PassRefPtr<LevelDBTransaction>);

explicit

> Source/WebCore/platform/leveldb/LevelDBTransaction.h:174
> +    LevelDBWriteOnlyTransaction(LevelDBDatabase*);

explicit
Comment 3 Zan Dobersek 2014-02-18 14:03:43 PST
Committed r164314: <http://trac.webkit.org/changeset/164314>