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

Unified Diff: chrome/browser/ui/app_list/app_list_service_mac_interactive_uitest.mm

Issue 627043002: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[a-s]* (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: chrome/browser/ui/app_list/app_list_service_mac_interactive_uitest.mm
diff --git a/chrome/browser/ui/app_list/app_list_service_mac_interactive_uitest.mm b/chrome/browser/ui/app_list/app_list_service_mac_interactive_uitest.mm
index 4cbada134092f2c15f431654563fa62291b6832a..d3f8c5263c2c97a11dfbe6e441d112aeb09f622f 100644
--- a/chrome/browser/ui/app_list/app_list_service_mac_interactive_uitest.mm
+++ b/chrome/browser/ui/app_list/app_list_service_mac_interactive_uitest.mm
@@ -50,7 +50,7 @@ class AppListServiceMacInteractiveTest : public InProcessBrowserTest,
}
// testing::Test overrides:
- virtual void TearDown() OVERRIDE {
+ virtual void TearDown() override {
// At tear-down, NOTIFICATION_APP_TERMINATING should have been sent for the
// browser shutdown. References to browser-owned objects must be removed
// from the app list UI.
@@ -62,23 +62,23 @@ class AppListServiceMacInteractiveTest : public InProcessBrowserTest,
}
// AppShimHandler::Host overrides:
- virtual void OnAppLaunchComplete(apps::AppShimLaunchResult result) OVERRIDE {
+ virtual void OnAppLaunchComplete(apps::AppShimLaunchResult result) override {
// AppList shims are always given APP_SHIM_LAUNCH_DUPLICATE_HOST, indicating
// that the shim process should immediately close.
EXPECT_EQ(apps::APP_SHIM_LAUNCH_DUPLICATE_HOST, result);
++launch_count_;
}
- virtual void OnAppClosed() OVERRIDE {
+ virtual void OnAppClosed() override {
NOTREACHED();
}
- virtual void OnAppHide() OVERRIDE {}
+ virtual void OnAppHide() override {}
virtual void OnAppRequestUserAttention(
- apps::AppShimAttentionType type) OVERRIDE {}
- virtual base::FilePath GetProfilePath() const OVERRIDE {
+ apps::AppShimAttentionType type) override {}
+ virtual base::FilePath GetProfilePath() const override {
NOTREACHED(); // Currently unused in this test.
return base::FilePath();
}
- virtual std::string GetAppId() const OVERRIDE {
+ virtual std::string GetAppId() const override {
return app_mode::kAppListModeId;
}
« no previous file with comments | « chrome/browser/ui/app_list/app_list_service_mac.h ('k') | chrome/browser/ui/app_list/app_list_service_mac_unittest.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698