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

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

Issue 602883003: Replacing the OVERRIDE with override and FINAL with final in content/browser/indexed_db (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 38f98e9efee9f56fb33d85e58eb2f6cadf82fb1a..f7fa15d0e2da37954a23a57d5e80f5204e64e8ff 100644
--- a/content/browser/indexed_db/indexed_db_internals_ui.cc
+++ b/content/browser/indexed_db/indexed_db_internals_ui.cc
@@ -306,10 +306,10 @@ class FileDeleter : public DownloadItem::Observer {
explicit FileDeleter(const base::FilePath& temp_dir) : temp_dir_(temp_dir) {}
virtual ~FileDeleter();
- virtual void OnDownloadUpdated(DownloadItem* download) OVERRIDE;
- virtual void OnDownloadOpened(DownloadItem* item) OVERRIDE {}
- virtual void OnDownloadRemoved(DownloadItem* item) OVERRIDE {}
- virtual void OnDownloadDestroyed(DownloadItem* item) 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 {}
private:
const base::FilePath temp_dir_;
« no previous file with comments | « content/browser/indexed_db/indexed_db_fake_backing_store.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