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

Unified Diff: extensions/browser/api/capture_web_contents_function.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/capture_web_contents_function.h
diff --git a/extensions/browser/api/capture_web_contents_function.h b/extensions/browser/api/capture_web_contents_function.h
index 346b8e3b1abedb3dc9f88d5345fb7ae488b364e3..7effacd8f46fb2b82277224a911e4b29e8a397ae 100644
--- a/extensions/browser/api/capture_web_contents_function.h
+++ b/extensions/browser/api/capture_web_contents_function.h
@@ -23,11 +23,11 @@ class CaptureWebContentsFunction : public AsyncExtensionFunction {
CaptureWebContentsFunction() {}
protected:
- virtual ~CaptureWebContentsFunction() {}
+ ~CaptureWebContentsFunction() override {}
// ExtensionFunction implementation.
- virtual bool HasPermission() override;
- virtual bool RunAsync() override;
+ bool HasPermission() override;
+ bool RunAsync() override;
virtual bool IsScreenshotEnabled() = 0;
virtual content::WebContents* GetWebContentsForID(int context_id) = 0;

Powered by Google App Engine
This is Rietveld 408576698