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

Unified Diff: storage/browser/blob/view_blob_internals_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
« no previous file with comments | « storage/browser/blob/local_file_stream_reader.h ('k') | storage/browser/database/database_quota_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: storage/browser/blob/view_blob_internals_job.h
diff --git a/storage/browser/blob/view_blob_internals_job.h b/storage/browser/blob/view_blob_internals_job.h
index 9fc385000f21be533afcb1f545e472e890a47f9c..4ab1e30cc8601e8cc821324f8a15bd34e72828f8 100644
--- a/storage/browser/blob/view_blob_internals_job.h
+++ b/storage/browser/blob/view_blob_internals_job.h
@@ -29,17 +29,16 @@ class STORAGE_EXPORT ViewBlobInternalsJob
net::NetworkDelegate* network_delegate,
BlobStorageContext* blob_storage_context);
- virtual void Start() override;
- virtual int GetData(std::string* mime_type,
- std::string* charset,
- std::string* data,
- const net::CompletionCallback& callback) const override;
- virtual bool IsRedirectResponse(GURL* location,
- int* http_status_code) override;
- virtual void Kill() override;
+ void Start() override;
+ int GetData(std::string* mime_type,
+ std::string* charset,
+ std::string* data,
+ const net::CompletionCallback& callback) const override;
+ bool IsRedirectResponse(GURL* location, int* http_status_code) override;
+ void Kill() override;
private:
- virtual ~ViewBlobInternalsJob();
+ ~ViewBlobInternalsJob() override;
void GenerateHTML(std::string* out) const;
static void GenerateHTMLForBlobData(const BlobData& blob_data,
« no previous file with comments | « storage/browser/blob/local_file_stream_reader.h ('k') | storage/browser/database/database_quota_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698