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

Unified Diff: extensions/browser/api/app_view/app_view_internal_api.h

Issue 622343002: replace OVERRIDE and FINAL with override and final in 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: extensions/browser/api/app_view/app_view_internal_api.h
diff --git a/extensions/browser/api/app_view/app_view_internal_api.h b/extensions/browser/api/app_view/app_view_internal_api.h
index 2e11cccc0e23b63c8f6bd61c5178d15b6e9208d2..fb91c5ce7e8e12222f744fb69b91c028b2d47b9d 100644
--- a/extensions/browser/api/app_view/app_view_internal_api.h
+++ b/extensions/browser/api/app_view/app_view_internal_api.h
@@ -17,7 +17,7 @@ class AppViewInternalAttachFrameFunction : public AsyncExtensionFunction {
protected:
virtual ~AppViewInternalAttachFrameFunction() {}
- virtual bool RunAsync() OVERRIDE FINAL;
+ virtual bool RunAsync() override final;
private:
DISALLOW_COPY_AND_ASSIGN(AppViewInternalAttachFrameFunction);
@@ -31,7 +31,7 @@ class AppViewInternalDenyRequestFunction : public AsyncExtensionFunction {
protected:
virtual ~AppViewInternalDenyRequestFunction() {}
- virtual bool RunAsync() OVERRIDE FINAL;
+ virtual bool RunAsync() override final;
private:
DISALLOW_COPY_AND_ASSIGN(AppViewInternalDenyRequestFunction);

Powered by Google App Engine
This is Rietveld 408576698