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

Unified Diff: storage/browser/blob/local_file_stream_reader.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/blob/blob_url_request_job_factory.h ('k') | storage/browser/blob/view_blob_internals_job.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: storage/browser/blob/local_file_stream_reader.h
diff --git a/storage/browser/blob/local_file_stream_reader.h b/storage/browser/blob/local_file_stream_reader.h
index 2d401af0cc7987a7af6b7351c4854af05e7d6bd6..ba8a34816a9ba814648a3036279a38491b57c5ee 100644
--- a/storage/browser/blob/local_file_stream_reader.h
+++ b/storage/browser/blob/local_file_stream_reader.h
@@ -33,13 +33,13 @@ namespace storage {
class STORAGE_EXPORT LocalFileStreamReader
: public NON_EXPORTED_BASE(FileStreamReader) {
public:
- virtual ~LocalFileStreamReader();
+ ~LocalFileStreamReader() override;
// FileStreamReader overrides.
- virtual int Read(net::IOBuffer* buf, int buf_len,
- const net::CompletionCallback& callback) override;
- virtual int64 GetLength(
- const net::Int64CompletionCallback& callback) override;
+ int Read(net::IOBuffer* buf,
+ int buf_len,
+ const net::CompletionCallback& callback) override;
+ int64 GetLength(const net::Int64CompletionCallback& callback) override;
private:
friend class FileStreamReader;
« no previous file with comments | « storage/browser/blob/blob_url_request_job_factory.h ('k') | storage/browser/blob/view_blob_internals_job.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698