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

Unified Diff: chrome/browser/background/background_contents_service.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.cc
diff --git a/chrome/browser/background/background_contents_service.cc b/chrome/browser/background/background_contents_service.cc
index f647232e9f78ad704db9fee8fe184ff9b2854f6b..fc49ec01499d39feeb1a1f2cc64eac005b612dfc 100644
--- a/chrome/browser/background/background_contents_service.cc
+++ b/chrome/browser/background/background_contents_service.cc
@@ -104,13 +104,13 @@ class CrashNotificationDelegate : public NotificationDelegate {
extension_id_(extension->id()) {
}
- virtual void Display() OVERRIDE {}
+ virtual void Display() override {}
- virtual void Error() OVERRIDE {}
+ virtual void Error() override {}
- virtual void Close(bool by_user) OVERRIDE {}
+ virtual void Close(bool by_user) override {}
- virtual void Click() OVERRIDE {
+ virtual void Click() override {
// http://crbug.com/247790 involves a crash notification balloon being
// clicked while the extension isn't in the TERMINATED state. In that case,
// any of the "reload" methods called below can unload the extension, which
@@ -141,13 +141,13 @@ class CrashNotificationDelegate : public NotificationDelegate {
ScheduleCloseBalloon(copied_extension_id, profile_);
}
- virtual bool HasClickedListener() OVERRIDE { return true; }
+ virtual bool HasClickedListener() override { return true; }
- virtual std::string id() const OVERRIDE {
+ virtual std::string id() const override {
return kNotificationPrefix + extension_id_;
}
- virtual content::WebContents* GetWebContents() const OVERRIDE {
+ virtual content::WebContents* GetWebContents() const override {
return NULL;
}

Powered by Google App Engine
This is Rietveld 408576698