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

Unified Diff: third_party/WebKit/Source/platform/exported/WebFileSystemCallbacks.cpp

Issue 2390833002: reflow comments in platform/{animation,blob,clipboard,exported} (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/platform/exported/WebFileSystemCallbacks.cpp
diff --git a/third_party/WebKit/Source/platform/exported/WebFileSystemCallbacks.cpp b/third_party/WebKit/Source/platform/exported/WebFileSystemCallbacks.cpp
index b02d18ed16ffec887896c895a49fee27664c74c0..719b6fe8f188ce00537b6ff7551f91a462775c62 100644
--- a/third_party/WebKit/Source/platform/exported/WebFileSystemCallbacks.cpp
+++ b/third_party/WebKit/Source/platform/exported/WebFileSystemCallbacks.cpp
@@ -94,8 +94,9 @@ void WebFileSystemCallbacks::didReadMetadata(const WebFileInfo& webFileInfo) {
void WebFileSystemCallbacks::didCreateSnapshotFile(
const WebFileInfo& webFileInfo) {
ASSERT(!m_private.isNull());
- // It's important to create a BlobDataHandle that refers to the platform file path prior
- // to return from this method so the underlying file will not be deleted.
+ // It's important to create a BlobDataHandle that refers to the platform file
+ // path prior to return from this method so the underlying file will not be
+ // deleted.
std::unique_ptr<BlobData> blobData = BlobData::create();
blobData->appendFile(webFileInfo.platformPath, 0, webFileInfo.length,
invalidFileTime());

Powered by Google App Engine
This is Rietveld 408576698