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

Unified Diff: chrome/browser/background/background_contents_service_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/background/background_contents_service_unittest.cc
diff --git a/chrome/browser/background/background_contents_service_unittest.cc b/chrome/browser/background/background_contents_service_unittest.cc
index 6f08052c7d4de96aceee6ca86bf2aef0434acc29..ca5953fb709d42ea0f41a22096273667752484f3 100644
--- a/chrome/browser/background/background_contents_service_unittest.cc
+++ b/chrome/browser/background/background_contents_service_unittest.cc
@@ -90,7 +90,7 @@ class MockBackgroundContents : public BackgroundContents {
content::Source<Profile>(profile_),
content::Details<BackgroundContents>(this));
}
- virtual const GURL& GetURL() const OVERRIDE { return url_; }
+ virtual const GURL& GetURL() const override { return url_; }
void MockClose(Profile* profile) {
content::NotificationService::current()->Notify(
@@ -140,13 +140,13 @@ class NotificationWaiter : public message_center::MessageCenterObserver {
private:
// message_center::MessageCenterObserver overrides:
virtual void OnNotificationAdded(
- const std::string& notification_id) OVERRIDE {
+ const std::string& notification_id) override {
if (notification_id == FindNotificationIdFromDelegateId(target_id_))
run_loop_.Quit();
}
virtual void OnNotificationUpdated(
- const std::string& notification_id) OVERRIDE {
+ const std::string& notification_id) override {
if (notification_id == FindNotificationIdFromDelegateId(target_id_))
run_loop_.Quit();
}
« no previous file with comments | « chrome/browser/background/background_contents_service_factory.h ('k') | chrome/browser/background/background_mode_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698