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

Unified Diff: chrome/browser/profiles/profile_destroyer.h

Issue 654223009: Standardize usage of virtual/override/final in chrome/browser/profiles/ (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: chrome/browser/profiles/profile_destroyer.h
diff --git a/chrome/browser/profiles/profile_destroyer.h b/chrome/browser/profiles/profile_destroyer.h
index cd5054f104afe485852c500792d0301ddc520463..59b705bbd99e5f97345ed6bcf6202d41c6d8e170 100644
--- a/chrome/browser/profiles/profile_destroyer.h
+++ b/chrome/browser/profiles/profile_destroyer.h
@@ -31,11 +31,10 @@ class ProfileDestroyer : public content::RenderProcessHostObserver {
friend class base::RefCounted<ProfileDestroyer>;
ProfileDestroyer(Profile* const profile, HostSet* hosts);
- virtual ~ProfileDestroyer();
+ ~ProfileDestroyer() override;
// content::RenderProcessHostObserver override.
- virtual void RenderProcessHostDestroyed(
- content::RenderProcessHost* host) override;
+ void RenderProcessHostDestroyed(content::RenderProcessHost* host) override;
// Called by the timer to cancel the pending destruction and do it now.
void DestroyProfile();

Powered by Google App Engine
This is Rietveld 408576698