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

Unified Diff: chrome/browser/ui/hung_plugin_tab_helper.h

Issue 671653002: Standardize usage of virtual/override/final in chrome/browser/ui/ (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/ui/hung_plugin_tab_helper.h
diff --git a/chrome/browser/ui/hung_plugin_tab_helper.h b/chrome/browser/ui/hung_plugin_tab_helper.h
index 97b4f3aeb11adbb6c63495335bdbf1bdaf711d0b..14649fdecd53ac24a05da5646fc0dc53a024a7c7 100644
--- a/chrome/browser/ui/hung_plugin_tab_helper.h
+++ b/chrome/browser/ui/hung_plugin_tab_helper.h
@@ -41,19 +41,19 @@ class HungPluginTabHelper
public content::NotificationObserver,
public content::WebContentsUserData<HungPluginTabHelper> {
public:
- virtual ~HungPluginTabHelper();
+ ~HungPluginTabHelper() override;
// content::WebContentsObserver:
- virtual void PluginCrashed(const base::FilePath& plugin_path,
- base::ProcessId plugin_pid) override;
- virtual void PluginHungStatusChanged(int plugin_child_id,
- const base::FilePath& plugin_path,
- bool is_hung) override;
+ void PluginCrashed(const base::FilePath& plugin_path,
+ base::ProcessId plugin_pid) override;
+ void PluginHungStatusChanged(int plugin_child_id,
+ const base::FilePath& plugin_path,
+ bool is_hung) override;
// content::NotificationObserver:
- virtual void Observe(int type,
- const content::NotificationSource& source,
- const content::NotificationDetails& details) override;
+ void Observe(int type,
+ const content::NotificationSource& source,
+ const content::NotificationDetails& details) override;
// Called by an infobar when the user selects to kill the plugin.
void KillPlugin(int child_id);

Powered by Google App Engine
This is Rietveld 408576698