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

Unified Diff: extensions/browser/api/app_current_window_internal/app_current_window_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_current_window_internal/app_current_window_internal_api.h
diff --git a/extensions/browser/api/app_current_window_internal/app_current_window_internal_api.h b/extensions/browser/api/app_current_window_internal/app_current_window_internal_api.h
index 057988127829ae6833017b28d923c3088a8c9235..6316fed7e29319ed71e72c6bd56ae98c14fd320a 100644
--- a/extensions/browser/api/app_current_window_internal/app_current_window_internal_api.h
+++ b/extensions/browser/api/app_current_window_internal/app_current_window_internal_api.h
@@ -19,7 +19,7 @@ class AppCurrentWindowInternalExtensionFunction : public SyncExtensionFunction {
virtual bool RunWithWindow(AppWindow* window) = 0;
private:
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
};
class AppCurrentWindowInternalFocusFunction
@@ -30,7 +30,7 @@ class AppCurrentWindowInternalFocusFunction
protected:
virtual ~AppCurrentWindowInternalFocusFunction() {}
- virtual bool RunWithWindow(AppWindow* window) OVERRIDE;
+ virtual bool RunWithWindow(AppWindow* window) override;
};
class AppCurrentWindowInternalFullscreenFunction
@@ -41,7 +41,7 @@ class AppCurrentWindowInternalFullscreenFunction
protected:
virtual ~AppCurrentWindowInternalFullscreenFunction() {}
- virtual bool RunWithWindow(AppWindow* window) OVERRIDE;
+ virtual bool RunWithWindow(AppWindow* window) override;
};
class AppCurrentWindowInternalMaximizeFunction
@@ -52,7 +52,7 @@ class AppCurrentWindowInternalMaximizeFunction
protected:
virtual ~AppCurrentWindowInternalMaximizeFunction() {}
- virtual bool RunWithWindow(AppWindow* window) OVERRIDE;
+ virtual bool RunWithWindow(AppWindow* window) override;
};
class AppCurrentWindowInternalMinimizeFunction
@@ -63,7 +63,7 @@ class AppCurrentWindowInternalMinimizeFunction
protected:
virtual ~AppCurrentWindowInternalMinimizeFunction() {}
- virtual bool RunWithWindow(AppWindow* window) OVERRIDE;
+ virtual bool RunWithWindow(AppWindow* window) override;
};
class AppCurrentWindowInternalRestoreFunction
@@ -74,7 +74,7 @@ class AppCurrentWindowInternalRestoreFunction
protected:
virtual ~AppCurrentWindowInternalRestoreFunction() {}
- virtual bool RunWithWindow(AppWindow* window) OVERRIDE;
+ virtual bool RunWithWindow(AppWindow* window) override;
};
class AppCurrentWindowInternalDrawAttentionFunction
@@ -85,7 +85,7 @@ class AppCurrentWindowInternalDrawAttentionFunction
protected:
virtual ~AppCurrentWindowInternalDrawAttentionFunction() {}
- virtual bool RunWithWindow(AppWindow* window) OVERRIDE;
+ virtual bool RunWithWindow(AppWindow* window) override;
};
class AppCurrentWindowInternalClearAttentionFunction
@@ -96,7 +96,7 @@ class AppCurrentWindowInternalClearAttentionFunction
protected:
virtual ~AppCurrentWindowInternalClearAttentionFunction() {}
- virtual bool RunWithWindow(AppWindow* window) OVERRIDE;
+ virtual bool RunWithWindow(AppWindow* window) override;
};
class AppCurrentWindowInternalShowFunction
@@ -107,7 +107,7 @@ class AppCurrentWindowInternalShowFunction
protected:
virtual ~AppCurrentWindowInternalShowFunction() {}
- virtual bool RunWithWindow(AppWindow* window) OVERRIDE;
+ virtual bool RunWithWindow(AppWindow* window) override;
};
class AppCurrentWindowInternalHideFunction
@@ -118,7 +118,7 @@ class AppCurrentWindowInternalHideFunction
protected:
virtual ~AppCurrentWindowInternalHideFunction() {}
- virtual bool RunWithWindow(AppWindow* window) OVERRIDE;
+ virtual bool RunWithWindow(AppWindow* window) override;
};
class AppCurrentWindowInternalSetBoundsFunction
@@ -128,7 +128,7 @@ class AppCurrentWindowInternalSetBoundsFunction
APP_CURRENTWINDOWINTERNAL_SETBOUNDS)
protected:
virtual ~AppCurrentWindowInternalSetBoundsFunction() {}
- virtual bool RunWithWindow(AppWindow* window) OVERRIDE;
+ virtual bool RunWithWindow(AppWindow* window) override;
};
class AppCurrentWindowInternalSetSizeConstraintsFunction
@@ -138,7 +138,7 @@ class AppCurrentWindowInternalSetSizeConstraintsFunction
APP_CURRENTWINDOWINTERNAL_SETSIZECONSTRAINTS)
protected:
virtual ~AppCurrentWindowInternalSetSizeConstraintsFunction() {}
- virtual bool RunWithWindow(AppWindow* window) OVERRIDE;
+ virtual bool RunWithWindow(AppWindow* window) override;
};
class AppCurrentWindowInternalSetIconFunction
@@ -149,7 +149,7 @@ class AppCurrentWindowInternalSetIconFunction
protected:
virtual ~AppCurrentWindowInternalSetIconFunction() {}
- virtual bool RunWithWindow(AppWindow* window) OVERRIDE;
+ virtual bool RunWithWindow(AppWindow* window) override;
};
class AppCurrentWindowInternalSetBadgeIconFunction
@@ -160,7 +160,7 @@ class AppCurrentWindowInternalSetBadgeIconFunction
protected:
virtual ~AppCurrentWindowInternalSetBadgeIconFunction() {}
- virtual bool RunWithWindow(AppWindow* window) OVERRIDE;
+ virtual bool RunWithWindow(AppWindow* window) override;
};
class AppCurrentWindowInternalClearBadgeFunction
@@ -171,7 +171,7 @@ class AppCurrentWindowInternalClearBadgeFunction
protected:
virtual ~AppCurrentWindowInternalClearBadgeFunction() {}
- virtual bool RunWithWindow(AppWindow* window) OVERRIDE;
+ virtual bool RunWithWindow(AppWindow* window) override;
};
class AppCurrentWindowInternalSetShapeFunction
@@ -182,7 +182,7 @@ class AppCurrentWindowInternalSetShapeFunction
protected:
virtual ~AppCurrentWindowInternalSetShapeFunction() {}
- virtual bool RunWithWindow(AppWindow* window) OVERRIDE;
+ virtual bool RunWithWindow(AppWindow* window) override;
};
class AppCurrentWindowInternalSetAlwaysOnTopFunction
@@ -193,7 +193,7 @@ class AppCurrentWindowInternalSetAlwaysOnTopFunction
protected:
virtual ~AppCurrentWindowInternalSetAlwaysOnTopFunction() {}
- virtual bool RunWithWindow(AppWindow* window) OVERRIDE;
+ virtual bool RunWithWindow(AppWindow* window) override;
};
class AppCurrentWindowInternalSetVisibleOnAllWorkspacesFunction
@@ -205,7 +205,7 @@ class AppCurrentWindowInternalSetVisibleOnAllWorkspacesFunction
protected:
virtual ~AppCurrentWindowInternalSetVisibleOnAllWorkspacesFunction() {}
- virtual bool RunWithWindow(AppWindow* window) OVERRIDE;
+ virtual bool RunWithWindow(AppWindow* window) override;
};
} // namespace extensions
« no previous file with comments | « extensions/browser/api/api_resource_manager.h ('k') | extensions/browser/api/app_view/app_view_internal_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698