diff options
author | mostynb <mostynb@opera.com> | 2014-10-03 17:49:22 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-04 00:49:43 +0000 |
commit | 205d625e83d765fd3923816c3e4b814ba3eabce2 (patch) | |
tree | e0ba481c3e6d2b7456e4b1af498c9292d3cd64cc /chrome/browser/ui/hung_plugin_tab_helper.h | |
parent | ceb961140470e5e7a14e41b53ce244947b24a062 (diff) | |
download | chromium_src-205d625e83d765fd3923816c3e4b814ba3eabce2.zip chromium_src-205d625e83d765fd3923816c3e4b814ba3eabce2.tar.gz chromium_src-205d625e83d765fd3923816c3e4b814ba3eabce2.tar.bz2 |
replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[a-s]*
BUG=417463
Review URL: https://codereview.chromium.org/627043002
Cr-Commit-Position: refs/heads/master@{#298136}
Diffstat (limited to 'chrome/browser/ui/hung_plugin_tab_helper.h')
-rw-r--r-- | chrome/browser/ui/hung_plugin_tab_helper.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/ui/hung_plugin_tab_helper.h b/chrome/browser/ui/hung_plugin_tab_helper.h index 6cf1a39..97b4f3a 100644 --- a/chrome/browser/ui/hung_plugin_tab_helper.h +++ b/chrome/browser/ui/hung_plugin_tab_helper.h @@ -45,15 +45,15 @@ class HungPluginTabHelper // content::WebContentsObserver: virtual void PluginCrashed(const base::FilePath& plugin_path, - base::ProcessId plugin_pid) OVERRIDE; + base::ProcessId plugin_pid) override; virtual void PluginHungStatusChanged(int plugin_child_id, const base::FilePath& plugin_path, - bool is_hung) OVERRIDE; + bool is_hung) override; // content::NotificationObserver: virtual void Observe(int type, const content::NotificationSource& source, - const content::NotificationDetails& details) OVERRIDE; + const content::NotificationDetails& details) override; // Called by an infobar when the user selects to kill the plugin. void KillPlugin(int child_id); |