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

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

Issue 2388423003: reflow comments in modules/[fetch,indexeddb] (Closed)
Patch Set: rebase 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/indexeddb/IDBRequestTest.cpp
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBRequestTest.cpp b/third_party/WebKit/Source/modules/indexeddb/IDBRequestTest.cpp
index d71b49a17c502161c03733ecd652a2a351b7b279..89a6807a4e1d08a0fa511bf5dc445fa091894095 100644
--- a/third_party/WebKit/Source/modules/indexeddb/IDBRequestTest.cpp
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBRequestTest.cpp
@@ -76,11 +76,12 @@ TEST(IDBRequestTest, AbortErrorAfterAbort) {
scope.getScriptState(), IDBAny::createUndefined(), transaction);
EXPECT_EQ(request->readyState(), "pending");
- // Simulate the IDBTransaction having received onAbort from back end and aborting the request:
+ // Simulate the IDBTransaction having received onAbort from back end and
+ // aborting the request:
request->abort();
- // Now simulate the back end having fired an abort error at the request to clear up any intermediaries.
- // Ensure an assertion is not raised.
+ // Now simulate the back end having fired an abort error at the request to
+ // clear up any intermediaries. Ensure an assertion is not raised.
request->onError(DOMException::create(AbortError, "Description goes here."));
// Stop the request lest it be GCed and its destructor

Powered by Google App Engine
This is Rietveld 408576698