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

Unified Diff: chrome/browser/apps/app_shim/extension_app_shim_handler_mac.cc

Issue 625113002: replace OVERRIDE and FINAL with override and final in chrome/browser/[a-i]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix newly added OVERRIDEs 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: chrome/browser/apps/app_shim/extension_app_shim_handler_mac.cc
diff --git a/chrome/browser/apps/app_shim/extension_app_shim_handler_mac.cc b/chrome/browser/apps/app_shim/extension_app_shim_handler_mac.cc
index e7c146cdf96f75743b3bbbd1cdf5052be818d2d2..6223af348706ee50b8723afe509731c3ebfa3ceb 100644
--- a/chrome/browser/apps/app_shim/extension_app_shim_handler_mac.cc
+++ b/chrome/browser/apps/app_shim/extension_app_shim_handler_mac.cc
@@ -103,12 +103,12 @@ class EnableViaPrompt : public ExtensionEnableFlowDelegate {
private:
// ExtensionEnableFlowDelegate overrides.
- virtual void ExtensionEnableFlowFinished() OVERRIDE {
+ virtual void ExtensionEnableFlowFinished() override {
callback_.Run();
delete this;
}
- virtual void ExtensionEnableFlowAborted(bool user_initiated) OVERRIDE {
+ virtual void ExtensionEnableFlowAborted(bool user_initiated) override {
callback_.Run();
delete this;
}

Powered by Google App Engine
This is Rietveld 408576698