Bug 108995 - webdatabase: Change DatabaseTask and DatabaseThread to use DatabaseBackendAsync instead of Database.
Summary: webdatabase: Change DatabaseTask and DatabaseThread to use DatabaseBackendAsy...
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: WebCore Misc. (show other bugs)
Version: 528+ (Nightly build)
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Mark Lam
URL:
Keywords:
Depends on:
Blocks: 107475
  Show dependency treegraph
 
Reported: 2013-02-05 17:55 PST by Mark Lam
Modified: 2019-05-02 16:24 PDT (History)
5 users (show)

See Also:


Attachments
the patch. (deleted)
2013-02-05 18:02 PST, Mark Lam
sam: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Mark Lam 2013-02-05 17:55:04 PST
This is a sub-task of https://bugs.webkit.org/show_bug.cgi?id=107475.  Breaking out as a step for easier review.

Change DatabaseTask and DatabaseThread to use DatabaseBackendAsync instead of Database.  DatabaseTask and DatabaseThread belongs in the backend and should ideally not be referencing the front end Database directly.  For now, we change it to work their interfaces with DatabaseBackendAsync.  However, in the implementation, they are still thunking over to Database to do the real work since that functionality hasn't been moved over to DatabaseBackendAsync yet.
Comment 1 Mark Lam 2013-02-05 18:02:52 PST
Created attachment 186736 [details]
the patch.
Comment 2 Mark Lam 2013-02-05 18:06:41 PST
Comment on attachment 186736 [details]
the patch.

This is a small patch.  May I have a review please?  Thanks.
Comment 3 Mark Lam 2013-02-05 18:13:59 PST
Thanks for the review.  Landed in r141956: <http://trac.webkit.org/changeset/141956>.