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

Unified Diff: chrome/browser/extensions/active_install_data.h

Issue 666153002: Standardize usage of virtual/override/final in chrome/browser/extensions/ (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 | « no previous file | chrome/browser/extensions/active_script_controller.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/active_install_data.h
diff --git a/chrome/browser/extensions/active_install_data.h b/chrome/browser/extensions/active_install_data.h
index c225ae6c7150969f3e2571bab1ba6f4602031bf1..4aa5887791eaa36e5a60145d9265707eedad094d 100644
--- a/chrome/browser/extensions/active_install_data.h
+++ b/chrome/browser/extensions/active_install_data.h
@@ -38,7 +38,7 @@ class ScopedActiveInstall : public InstallObserver {
// is still deregistered upon destruction.
ScopedActiveInstall(InstallTracker* tracker, const std::string& extension_id);
- virtual ~ScopedActiveInstall();
+ ~ScopedActiveInstall() override;
// Ensures that the active install is not deregistered upon destruction. This
// may be necessary if the extension install outlives the lifetime of this
@@ -49,7 +49,7 @@ class ScopedActiveInstall : public InstallObserver {
void Init();
// InstallObserver implementation.
- virtual void OnShutdown() override;
+ void OnShutdown() override;
InstallTracker* tracker_;
ScopedObserver<InstallTracker, InstallObserver> tracker_observer_;
« no previous file with comments | « no previous file | chrome/browser/extensions/active_script_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698