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

Unified Diff: third_party/WebKit/public/platform/WebFileWriter.h

Issue 2387113002: reflow comments in public/platform/ (Closed)
Patch Set: nit 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/public/platform/WebFileWriter.h
diff --git a/third_party/WebKit/public/platform/WebFileWriter.h b/third_party/WebKit/public/platform/WebFileWriter.h
index f288c5fcfa551318afc9197dfea9971ee743dc00..0e6dfff736900216fb3c8df8b61b0ddc94a2119d 100644
--- a/third_party/WebKit/public/platform/WebFileWriter.h
+++ b/third_party/WebKit/public/platform/WebFileWriter.h
@@ -44,11 +44,14 @@ class WebFileWriter {
virtual ~WebFileWriter() {}
// Only one write or one truncate operation can be in progress at a time.
- // These functions are asynchronous and will report results through the WebFileWriter's associated WebFileWriterClient.
+ // These functions are asynchronous and will report results through the
+ // WebFileWriter's associated WebFileWriterClient.
virtual void write(long long position, const WebString& blobUUID) {}
virtual void truncate(long long length) = 0;
- // Cancel will attempt to abort a running write or truncate. However, it may not be possible to cancel an in-progress action, or the call may have come in too late. Partial writes are possible.
+ // Cancel will attempt to abort a running write or truncate. However, it may
+ // not be possible to cancel an in-progress action, or the call may have come
+ // in too late. Partial writes are possible.
// Do not call cancel when there is no write or truncate in progress.
virtual void cancel() = 0;
};
« no previous file with comments | « third_party/WebKit/public/platform/WebFileSystem.h ('k') | third_party/WebKit/public/platform/WebFileWriterClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698