| Index: third_party/WebKit/Source/modules/webdatabase/DatabaseTracker.h
|
| diff --git a/third_party/WebKit/Source/modules/webdatabase/DatabaseTracker.h b/third_party/WebKit/Source/modules/webdatabase/DatabaseTracker.h
|
| index 34b8c7ec662f1ccd80e2c9d8d40ff51098993233..c4e8acf0dc9d3ae23934e7544988892a90d96080 100644
|
| --- a/third_party/WebKit/Source/modules/webdatabase/DatabaseTracker.h
|
| +++ b/third_party/WebKit/Source/modules/webdatabase/DatabaseTracker.h
|
| @@ -53,8 +53,10 @@ class MODULES_EXPORT DatabaseTracker {
|
|
|
| public:
|
| static DatabaseTracker& tracker();
|
| - // This singleton will potentially be used from multiple worker threads and the page's context thread simultaneously. To keep this safe, it's
|
| - // currently using 4 locks. In order to avoid deadlock when taking multiple locks, you must take them in the correct order:
|
| + // This singleton will potentially be used from multiple worker threads and
|
| + // the page's context thread simultaneously. To keep this safe, it's
|
| + // currently using 4 locks. In order to avoid deadlock when taking multiple
|
| + // locks, you must take them in the correct order:
|
| // m_databaseGuard before quotaManager if both locks are needed.
|
| // m_openDatabaseMapGuard before quotaManager if both locks are needed.
|
| // m_databaseGuard and m_openDatabaseMapGuard currently don't overlap.
|
|
|