Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(898)

Unified Diff: third_party/WebKit/Source/modules/webdatabase/DatabaseTracker.h

Issue 2395473002: reflow comments in modules/webdatabase (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.

Powered by Google App Engine
This is Rietveld 408576698