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

Unified Diff: third_party/WebKit/Source/modules/filesystem/DataTransferItemFileSystem.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/DataTransferItemFileSystem.cpp
diff --git a/third_party/WebKit/Source/modules/filesystem/DataTransferItemFileSystem.cpp b/third_party/WebKit/Source/modules/filesystem/DataTransferItemFileSystem.cpp
index f2cf8bae2eac5164d6ea2179f17c8db2dc998584..12aba0f44b438d38eac75d77891869d73982f1ff 100644
--- a/third_party/WebKit/Source/modules/filesystem/DataTransferItemFileSystem.cpp
+++ b/third_party/WebKit/Source/modules/filesystem/DataTransferItemFileSystem.cpp
@@ -68,10 +68,12 @@ Entry* DataTransferItemFileSystem::webkitGetAsEntry(
return 0;
}
- // The dropped entries are mapped as top-level entries in the isolated filesystem.
+ // The dropped entries are mapped as top-level entries in the isolated
+ // filesystem.
String virtualPath = DOMFilePath::append("/", toFile(file)->name());
- // FIXME: This involves synchronous file operation. Consider passing file type data when we dispatch drag event.
+ // FIXME: This involves synchronous file operation. Consider passing file type
+ // data when we dispatch drag event.
FileMetadata metadata;
if (!getFileMetadata(toFile(file)->path(), metadata))
return 0;

Powered by Google App Engine
This is Rietveld 408576698