Index: content/browser/indexed_db/indexed_db_transaction_coordinator.cc |
diff --git a/content/browser/indexed_db/indexed_db_transaction_coordinator.cc b/content/browser/indexed_db/indexed_db_transaction_coordinator.cc |
index f552141c53cb9d62366490390754f347a62a3284..5ab92554959c0d579ed839329bff05b9cdf9fbfc 100644 |
--- a/content/browser/indexed_db/indexed_db_transaction_coordinator.cc |
+++ b/content/browser/indexed_db/indexed_db_transaction_coordinator.cc |
@@ -13,8 +13,8 @@ namespace content { |
IndexedDBTransactionCoordinator::IndexedDBTransactionCoordinator() {} |
IndexedDBTransactionCoordinator::~IndexedDBTransactionCoordinator() { |
- DCHECK(!queued_transactions_.size()); |
- DCHECK(!started_transactions_.size()); |
+ DCHECK(queued_transactions_.empty()); |
+ DCHECK(started_transactions_.empty()); |
} |
void IndexedDBTransactionCoordinator::DidCreateTransaction( |