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

Unified Diff: third_party/WebKit/Source/modules/filesystem/DirectoryReader.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/filesystem/DirectoryReader.cpp
diff --git a/third_party/WebKit/Source/modules/filesystem/DirectoryReader.cpp b/third_party/WebKit/Source/modules/filesystem/DirectoryReader.cpp
index 59c3adcda6d1e279959b9eebb977b5013fedda23..06408f27b174a07689dc2e40c7fb19f7fcd73b8f 100644
--- a/third_party/WebKit/Source/modules/filesystem/DirectoryReader.cpp
+++ b/third_party/WebKit/Source/modules/filesystem/DirectoryReader.cpp
@@ -52,7 +52,8 @@ class DirectoryReader::EntriesCallbackHelper final : public EntriesCallback {
}
private:
- // FIXME: This Member keeps the reader alive until all of the readDirectory results are received. crbug.com/350285
+ // FIXME: This Member keeps the reader alive until all of the readDirectory
+ // results are received. crbug.com/350285
Member<DirectoryReader> m_reader;
};
@@ -93,7 +94,8 @@ void DirectoryReader::readEntries(EntriesCallback* entriesCallback,
}
if (m_entriesCallback) {
- // Non-null m_entriesCallback means multiple readEntries() calls are made concurrently. We don't allow doing it.
+ // Non-null m_entriesCallback means multiple readEntries() calls are made
+ // concurrently. We don't allow doing it.
filesystem()->reportError(ScriptErrorCallback::wrap(errorCallback),
FileError::kInvalidStateErr);
return;

Powered by Google App Engine
This is Rietveld 408576698