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

Unified Diff: storage/browser/fileapi/file_system_dir_url_request_job.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
Index: storage/browser/fileapi/file_system_dir_url_request_job.h
diff --git a/storage/browser/fileapi/file_system_dir_url_request_job.h b/storage/browser/fileapi/file_system_dir_url_request_job.h
index 3423182a779583e94836d6077112442f7d580c29..f2567e460420e12a51092d56686bd4fc3b6de773 100644
--- a/storage/browser/fileapi/file_system_dir_url_request_job.h
+++ b/storage/browser/fileapi/file_system_dir_url_request_job.h
@@ -32,22 +32,20 @@ class STORAGE_EXPORT_PRIVATE FileSystemDirURLRequestJob
FileSystemContext* file_system_context);
// URLRequestJob methods:
- virtual void Start() override;
- virtual void Kill() override;
- virtual bool ReadRawData(net::IOBuffer* buf,
- int buf_size,
- int* bytes_read) override;
- virtual bool GetCharset(std::string* charset) override;
+ void Start() override;
+ void Kill() override;
+ bool ReadRawData(net::IOBuffer* buf, int buf_size, int* bytes_read) override;
+ bool GetCharset(std::string* charset) override;
// FilterContext methods (via URLRequestJob):
- virtual bool GetMimeType(std::string* mime_type) const override;
+ bool GetMimeType(std::string* mime_type) const override;
// TODO(adamk): Implement GetResponseInfo and GetResponseCode to simulate
// an HTTP response.
private:
class CallbackDispatcher;
- virtual ~FileSystemDirURLRequestJob();
+ ~FileSystemDirURLRequestJob() override;
void StartAsync();
void DidAttemptAutoMount(base::File::Error result);
« no previous file with comments | « storage/browser/fileapi/external_mount_points.h ('k') | storage/browser/fileapi/file_system_file_stream_reader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698