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

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

Issue 2388423003: reflow comments in modules/[fetch,indexeddb] (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/indexeddb/IDBRequestTest.cpp
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBRequestTest.cpp b/third_party/WebKit/Source/modules/indexeddb/IDBRequestTest.cpp
index 48509a0138d97d9dd1fd474bee534ff02ef84362..37a4dba64d1f6bf6a9ddeac43d830565552e45af 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.
jsbell 2016/10/04 20:10:30 An other double space after '.'
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