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

Unified Diff: chrome/browser/apps/app_shim/extension_app_shim_handler_mac_unittest.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_unittest.cc
diff --git a/chrome/browser/apps/app_shim/extension_app_shim_handler_mac_unittest.cc b/chrome/browser/apps/app_shim/extension_app_shim_handler_mac_unittest.cc
index 81d3c70ecc6972257b9b5c1fcd69f4a6c3b30291..913c9c812ac4f94b87a7ff582b9f7fcb4c90dba5 100644
--- a/chrome/browser/apps/app_shim/extension_app_shim_handler_mac_unittest.cc
+++ b/chrome/browser/apps/app_shim/extension_app_shim_handler_mac_unittest.cc
@@ -116,16 +116,16 @@ class FakeHost : public apps::AppShimHandler::Host {
MOCK_METHOD1(OnAppLaunchComplete, void(AppShimLaunchResult));
- virtual void OnAppClosed() OVERRIDE {
+ virtual void OnAppClosed() override {
handler_->OnShimClose(this);
++close_count_;
}
- virtual void OnAppHide() OVERRIDE {}
- virtual void OnAppRequestUserAttention(AppShimAttentionType type) OVERRIDE {}
- virtual base::FilePath GetProfilePath() const OVERRIDE {
+ virtual void OnAppHide() override {}
+ virtual void OnAppRequestUserAttention(AppShimAttentionType type) override {}
+ virtual base::FilePath GetProfilePath() const override {
return profile_path_;
}
- virtual std::string GetAppId() const OVERRIDE { return app_id_; }
+ virtual std::string GetAppId() const override { return app_id_; }
int close_count() { return close_count_; }

Powered by Google App Engine
This is Rietveld 408576698