Index: chrome/browser/extensions/api/web_view/chrome_web_view_internal_api.h |
diff --git a/chrome/browser/extensions/api/web_view/chrome_web_view_internal_api.h b/chrome/browser/extensions/api/web_view/chrome_web_view_internal_api.h |
index 70dfad0ee9eff43d441b5c83c3e2ad24382a18d3..823ea614da6fc96af08bad325fbe816eda478a6e 100644 |
--- a/chrome/browser/extensions/api/web_view/chrome_web_view_internal_api.h |
+++ b/chrome/browser/extensions/api/web_view/chrome_web_view_internal_api.h |
@@ -23,10 +23,10 @@ class ChromeWebViewInternalContextMenusCreateFunction |
ChromeWebViewInternalContextMenusCreateFunction() {} |
protected: |
- virtual ~ChromeWebViewInternalContextMenusCreateFunction() {} |
+ ~ChromeWebViewInternalContextMenusCreateFunction() override {} |
// ExtensionFunction implementation. |
- virtual bool RunAsync() override; |
+ bool RunAsync() override; |
private: |
DISALLOW_COPY_AND_ASSIGN(ChromeWebViewInternalContextMenusCreateFunction); |
@@ -40,10 +40,10 @@ class ChromeWebViewInternalContextMenusUpdateFunction |
ChromeWebViewInternalContextMenusUpdateFunction() {} |
protected: |
- virtual ~ChromeWebViewInternalContextMenusUpdateFunction() {} |
+ ~ChromeWebViewInternalContextMenusUpdateFunction() override {} |
// ExtensionFunction implementation. |
- virtual bool RunAsync() override; |
+ bool RunAsync() override; |
private: |
DISALLOW_COPY_AND_ASSIGN(ChromeWebViewInternalContextMenusUpdateFunction); |
@@ -57,10 +57,10 @@ class ChromeWebViewInternalContextMenusRemoveFunction |
ChromeWebViewInternalContextMenusRemoveFunction() {} |
protected: |
- virtual ~ChromeWebViewInternalContextMenusRemoveFunction() {} |
+ ~ChromeWebViewInternalContextMenusRemoveFunction() override {} |
// ExtensionFunction implementation. |
- virtual bool RunAsync() override; |
+ bool RunAsync() override; |
private: |
DISALLOW_COPY_AND_ASSIGN(ChromeWebViewInternalContextMenusRemoveFunction); |
@@ -74,10 +74,10 @@ class ChromeWebViewInternalContextMenusRemoveAllFunction |
ChromeWebViewInternalContextMenusRemoveAllFunction() {} |
protected: |
- virtual ~ChromeWebViewInternalContextMenusRemoveAllFunction() {} |
+ ~ChromeWebViewInternalContextMenusRemoveAllFunction() override {} |
// ExtensionFunction implementation. |
- virtual bool RunAsync() override; |
+ bool RunAsync() override; |
private: |
DISALLOW_COPY_AND_ASSIGN(ChromeWebViewInternalContextMenusRemoveAllFunction); |
@@ -92,11 +92,11 @@ class ChromeWebViewInternalShowContextMenuFunction |
ChromeWebViewInternalShowContextMenuFunction(); |
protected: |
- virtual ~ChromeWebViewInternalShowContextMenuFunction(); |
+ ~ChromeWebViewInternalShowContextMenuFunction() override; |
private: |
// WebViewInternalExtensionFunction implementation. |
- virtual bool RunAsyncSafe(WebViewGuest* guest) override; |
+ bool RunAsyncSafe(WebViewGuest* guest) override; |
DISALLOW_COPY_AND_ASSIGN(ChromeWebViewInternalShowContextMenuFunction); |
}; |