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

Unified Diff: extensions/browser/api/guest_view/guest_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
« no previous file with comments | « extensions/browser/api/execute_code_function.h ('k') | extensions/browser/api/hid/hid_api.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/api/guest_view/guest_view_internal_api.h
diff --git a/extensions/browser/api/guest_view/guest_view_internal_api.h b/extensions/browser/api/guest_view/guest_view_internal_api.h
index 13d7a42d06cc733f2491b555b4429c48bf7ed99c..7f44530c74ac4feaa58f66617f3e65891351e94a 100644
--- a/extensions/browser/api/guest_view/guest_view_internal_api.h
+++ b/extensions/browser/api/guest_view/guest_view_internal_api.h
@@ -17,7 +17,7 @@ class GuestViewInternalCreateGuestFunction : public AsyncExtensionFunction {
protected:
virtual ~GuestViewInternalCreateGuestFunction() {}
- virtual bool RunAsync() OVERRIDE FINAL;
+ virtual bool RunAsync() override final;
private:
void CreateGuestCallback(content::WebContents* guest_web_contents);
@@ -32,7 +32,7 @@ class GuestViewInternalDestroyGuestFunction : public AsyncExtensionFunction {
protected:
virtual ~GuestViewInternalDestroyGuestFunction();
- virtual bool RunAsync() OVERRIDE FINAL;
+ virtual bool RunAsync() override final;
private:
void DestroyGuestCallback(content::WebContents* guest_web_contents);
@@ -48,7 +48,7 @@ class GuestViewInternalSetAutoSizeFunction : public AsyncExtensionFunction {
protected:
virtual ~GuestViewInternalSetAutoSizeFunction();
- virtual bool RunAsync() OVERRIDE FINAL;
+ virtual bool RunAsync() override final;
private:
DISALLOW_COPY_AND_ASSIGN(GuestViewInternalSetAutoSizeFunction);
« no previous file with comments | « extensions/browser/api/execute_code_function.h ('k') | extensions/browser/api/hid/hid_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698