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

Unified Diff: chrome/browser/extensions/api/web_view/chrome_web_view_internal_api.h

Issue 624153002: replace OVERRIDE and FINAL with override and final in chrome/browser/extensions/ (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/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 dfda54848454e9a45304c27146a28b48e7e09e5e..70dfad0ee9eff43d441b5c83c3e2ad24382a18d3 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
@@ -26,7 +26,7 @@ class ChromeWebViewInternalContextMenusCreateFunction
virtual ~ChromeWebViewInternalContextMenusCreateFunction() {}
// ExtensionFunction implementation.
- virtual bool RunAsync() OVERRIDE;
+ virtual bool RunAsync() override;
private:
DISALLOW_COPY_AND_ASSIGN(ChromeWebViewInternalContextMenusCreateFunction);
@@ -43,7 +43,7 @@ class ChromeWebViewInternalContextMenusUpdateFunction
virtual ~ChromeWebViewInternalContextMenusUpdateFunction() {}
// ExtensionFunction implementation.
- virtual bool RunAsync() OVERRIDE;
+ virtual bool RunAsync() override;
private:
DISALLOW_COPY_AND_ASSIGN(ChromeWebViewInternalContextMenusUpdateFunction);
@@ -60,7 +60,7 @@ class ChromeWebViewInternalContextMenusRemoveFunction
virtual ~ChromeWebViewInternalContextMenusRemoveFunction() {}
// ExtensionFunction implementation.
- virtual bool RunAsync() OVERRIDE;
+ virtual bool RunAsync() override;
private:
DISALLOW_COPY_AND_ASSIGN(ChromeWebViewInternalContextMenusRemoveFunction);
@@ -77,7 +77,7 @@ class ChromeWebViewInternalContextMenusRemoveAllFunction
virtual ~ChromeWebViewInternalContextMenusRemoveAllFunction() {}
// ExtensionFunction implementation.
- virtual bool RunAsync() OVERRIDE;
+ virtual bool RunAsync() override;
private:
DISALLOW_COPY_AND_ASSIGN(ChromeWebViewInternalContextMenusRemoveAllFunction);
@@ -96,7 +96,7 @@ class ChromeWebViewInternalShowContextMenuFunction
private:
// WebViewInternalExtensionFunction implementation.
- virtual bool RunAsyncSafe(WebViewGuest* guest) OVERRIDE;
+ virtual bool RunAsyncSafe(WebViewGuest* guest) override;
DISALLOW_COPY_AND_ASSIGN(ChromeWebViewInternalShowContextMenuFunction);
};

Powered by Google App Engine
This is Rietveld 408576698