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

Unified Diff: third_party/WebKit/Source/modules/indexeddb/IDBRequest.h

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/IDBRequest.h
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBRequest.h b/third_party/WebKit/Source/modules/indexeddb/IDBRequest.h
index eb6cb26bc97008fd829edab55f2dd79c971779fc..cb2f41461b5532767e0e04b586dcd2e2b0aaf42f 100644
--- a/third_party/WebKit/Source/modules/indexeddb/IDBRequest.h
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBRequest.h
@@ -151,8 +151,8 @@ class MODULES_EXPORT IDBRequest : public EventTargetWithInlineData,
bool m_contextStopped = false;
Member<IDBTransaction> m_transaction;
ReadyState m_readyState = PENDING;
- bool m_requestAborted =
- false; // May be aborted by transaction then receive async onsuccess; ignore vs. assert.
+ bool m_requestAborted = false; // May be aborted by transaction then receive
+ // async onsuccess; ignore vs. assert.
private:
void setResultCursor(IDBCursor*,
@@ -173,9 +173,11 @@ class MODULES_EXPORT IDBRequest : public EventTargetWithInlineData,
// Only used if the result type will be a cursor.
IndexedDB::CursorType m_cursorType = IndexedDB::CursorKeyAndValue;
WebIDBCursorDirection m_cursorDirection = WebIDBCursorDirectionNext;
- // When a cursor is continued/advanced, m_result is cleared and m_pendingCursor holds it.
+ // When a cursor is continued/advanced, m_result is cleared and
+ // m_pendingCursor holds it.
Member<IDBCursor> m_pendingCursor;
- // New state is not applied to the cursor object until the event is dispatched.
+ // New state is not applied to the cursor object until the event is
+ // dispatched.
Member<IDBKey> m_cursorKey;
Member<IDBKey> m_cursorPrimaryKey;
RefPtr<IDBValue> m_cursorValue;

Powered by Google App Engine
This is Rietveld 408576698