Index: third_party/WebKit/Source/modules/indexeddb/IDBTransactionTest.cpp |
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBTransactionTest.cpp b/third_party/WebKit/Source/modules/indexeddb/IDBTransactionTest.cpp |
index 64fa0288db74ca1c71565d20e0975d85420baeeb..7baa1648af3626b2279dc2b4503cdd7630adaf09 100644 |
--- a/third_party/WebKit/Source/modules/indexeddb/IDBTransactionTest.cpp |
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBTransactionTest.cpp |
@@ -92,8 +92,8 @@ TEST(IDBTransactionTest, EnsureLifetime) { |
ThreadState::Current()->CollectAllGarbage(); |
EXPECT_EQ(1u, set.size()); |
- // This will generate an abort() call to the back end which is dropped by the |
- // fake proxy, so an explicit onAbort call is made. |
+ // This will generate an Abort() call to the back end which is dropped by the |
+ // fake proxy, so an explicit OnAbort call is made. |
scope.GetExecutionContext()->NotifyContextDestroyed(); |
transaction->OnAbort(DOMException::Create(kAbortError, "Aborted")); |
transaction.Clear(); |
@@ -143,7 +143,7 @@ TEST(IDBTransactionTest, TransactionFinish) { |
// The test will not fail if it is, but ASAN would notice the error. |
db->OnAbort(kTransactionId, DOMException::Create(kAbortError, "Aborted")); |
- // onAbort() should have cleared the transaction's reference to the database. |
+ // OnAbort() should have cleared the transaction's reference to the database. |
ThreadState::Current()->CollectAllGarbage(); |
EXPECT_EQ(0u, set.size()); |
} |