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

Unified Diff: storage/browser/fileapi/local_file_stream_writer.h

Issue 669603008: Standardize usage of virtual/override/final in storage/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
« no previous file with comments | « storage/browser/fileapi/isolated_file_system_backend.h ('k') | storage/browser/fileapi/local_file_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: storage/browser/fileapi/local_file_stream_writer.h
diff --git a/storage/browser/fileapi/local_file_stream_writer.h b/storage/browser/fileapi/local_file_stream_writer.h
index c955d5827c68391a2f47647d801c25aff9aded6b..6771a14113e55221332b29e4516264d0e17e1d5a 100644
--- a/storage/browser/fileapi/local_file_stream_writer.h
+++ b/storage/browser/fileapi/local_file_stream_writer.h
@@ -31,13 +31,14 @@ namespace storage {
class STORAGE_EXPORT LocalFileStreamWriter
: public NON_EXPORTED_BASE(FileStreamWriter) {
public:
- virtual ~LocalFileStreamWriter();
+ ~LocalFileStreamWriter() override;
// FileStreamWriter overrides.
- virtual int Write(net::IOBuffer* buf, int buf_len,
- const net::CompletionCallback& callback) override;
- virtual int Cancel(const net::CompletionCallback& callback) override;
- virtual int Flush(const net::CompletionCallback& callback) override;
+ int Write(net::IOBuffer* buf,
+ int buf_len,
+ const net::CompletionCallback& callback) override;
+ int Cancel(const net::CompletionCallback& callback) override;
+ int Flush(const net::CompletionCallback& callback) override;
private:
friend class content::LocalFileStreamWriterTest;
« no previous file with comments | « storage/browser/fileapi/isolated_file_system_backend.h ('k') | storage/browser/fileapi/local_file_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698