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

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

Issue 664933004: Standardize usage of virtual/override/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 fb91c5ce7e8e12222f744fb69b91c028b2d47b9d..c88959885c21571a1c844133d3bd84ed1bf23efe 100644
--- a/extensions/browser/api/app_view/app_view_internal_api.h
+++ b/extensions/browser/api/app_view/app_view_internal_api.h
@@ -16,8 +16,8 @@ class AppViewInternalAttachFrameFunction : public AsyncExtensionFunction {
AppViewInternalAttachFrameFunction();
protected:
- virtual ~AppViewInternalAttachFrameFunction() {}
- virtual bool RunAsync() override final;
+ ~AppViewInternalAttachFrameFunction() override {}
+ bool RunAsync() final;
private:
DISALLOW_COPY_AND_ASSIGN(AppViewInternalAttachFrameFunction);
@@ -30,8 +30,8 @@ class AppViewInternalDenyRequestFunction : public AsyncExtensionFunction {
AppViewInternalDenyRequestFunction();
protected:
- virtual ~AppViewInternalDenyRequestFunction() {}
- virtual bool RunAsync() override final;
+ ~AppViewInternalDenyRequestFunction() override {}
+ bool RunAsync() final;
private:
DISALLOW_COPY_AND_ASSIGN(AppViewInternalDenyRequestFunction);

Powered by Google App Engine
This is Rietveld 408576698