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

Unified Diff: content/browser/indexed_db/indexed_db_internals_ui.cc

Issue 667943003: Standardize usage of virtual/override/final in content/browser/ (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: content/browser/indexed_db/indexed_db_internals_ui.cc
diff --git a/content/browser/indexed_db/indexed_db_internals_ui.cc b/content/browser/indexed_db/indexed_db_internals_ui.cc
index 951272ad921d514e0b676d52c9e5773af939f633..472e1b9abcf3109be6d170d7d8b171beb83c529d 100644
--- a/content/browser/indexed_db/indexed_db_internals_ui.cc
+++ b/content/browser/indexed_db/indexed_db_internals_ui.cc
@@ -304,12 +304,12 @@ void IndexedDBInternalsUI::OnDownloadDataReady(
class FileDeleter : public DownloadItem::Observer {
public:
explicit FileDeleter(const base::FilePath& temp_dir) : temp_dir_(temp_dir) {}
- virtual ~FileDeleter();
+ ~FileDeleter() override;
- virtual void OnDownloadUpdated(DownloadItem* download) override;
- virtual void OnDownloadOpened(DownloadItem* item) override {}
- virtual void OnDownloadRemoved(DownloadItem* item) override {}
- virtual void OnDownloadDestroyed(DownloadItem* item) override {}
+ void OnDownloadUpdated(DownloadItem* download) override;
+ void OnDownloadOpened(DownloadItem* item) override {}
+ void OnDownloadRemoved(DownloadItem* item) override {}
+ void OnDownloadDestroyed(DownloadItem* item) override {}
private:
const base::FilePath temp_dir_;
« no previous file with comments | « content/browser/indexed_db/indexed_db_internals_ui.h ('k') | content/browser/indexed_db/indexed_db_quota_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698