diff options
author | dcheng <dcheng@chromium.org> | 2014-10-21 05:38:24 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-21 12:38:39 +0000 |
commit | 9168b2fe3e30afa4fd9a9500ba0725edf97c20a3 (patch) | |
tree | bb288d5b7fccc259391b83b18b12368a0d516b21 /extensions/browser/extension_web_contents_observer.h | |
parent | ae36a4a3f2efd040be2e563b0bff0592b0a5b5a1 (diff) | |
download | chromium_src-9168b2fe3e30afa4fd9a9500ba0725edf97c20a3.zip chromium_src-9168b2fe3e30afa4fd9a9500ba0725edf97c20a3.tar.gz chromium_src-9168b2fe3e30afa4fd9a9500ba0725edf97c20a3.tar.bz2 |
Standardize usage of virtual/override/final in extensions/
This patch was automatically generated by applying clang fixit hints
generated by the plugin to the source tree.
BUG=417463
TBR=yoz@chromium.org
Review URL: https://codereview.chromium.org/664933004
Cr-Commit-Position: refs/heads/master@{#300475}
Diffstat (limited to 'extensions/browser/extension_web_contents_observer.h')
-rw-r--r-- | extensions/browser/extension_web_contents_observer.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/extensions/browser/extension_web_contents_observer.h b/extensions/browser/extension_web_contents_observer.h index 74cc554..cd5712c 100644 --- a/extensions/browser/extension_web_contents_observer.h +++ b/extensions/browser/extension_web_contents_observer.h @@ -31,15 +31,14 @@ class Extension; class ExtensionWebContentsObserver : public content::WebContentsObserver { protected: explicit ExtensionWebContentsObserver(content::WebContents* web_contents); - virtual ~ExtensionWebContentsObserver(); + ~ExtensionWebContentsObserver() override; content::BrowserContext* browser_context() { return browser_context_; } // content::WebContentsObserver overrides. // A subclass should invoke this method to finish extension process setup. - virtual void RenderViewCreated(content::RenderViewHost* render_view_host) - override; + void RenderViewCreated(content::RenderViewHost* render_view_host) override; // Returns the extension or app associated with a render view host. Returns // NULL if the render view host is not for a valid extension. |