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

Unified Diff: third_party/WebKit/Source/modules/indexeddb/IDBTransactionTest.cpp

Issue 2814253002: IndexedDB: Fix mocks/comments following the great blink rename (Closed)
Patch Set: Created 3 years, 8 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/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());
}

Powered by Google App Engine
This is Rietveld 408576698