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

Unified Diff: chrome/browser/notifications/notification_object_proxy.h

Issue 667283002: Standardize usage of virtual/override/final in chrome/browser/notifications (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/notifications/notification_object_proxy.h
diff --git a/chrome/browser/notifications/notification_object_proxy.h b/chrome/browser/notifications/notification_object_proxy.h
index 937c535f4cffb382350023bb86982437a96c6214..df82d54c807c1dbff0f06d2be75e69f5b9194007 100644
--- a/chrome/browser/notifications/notification_object_proxy.h
+++ b/chrome/browser/notifications/notification_object_proxy.h
@@ -28,16 +28,16 @@ class NotificationObjectProxy
scoped_ptr<content::DesktopNotificationDelegate> delegate);
// NotificationDelegate implementation.
- virtual void Display() override;
- virtual void Error() override;
- virtual void Close(bool by_user) override;
- virtual void Click() override;
- virtual std::string id() const override;
+ void Display() override;
+ void Error() override;
+ void Close(bool by_user) override;
+ void Click() override;
+ std::string id() const override;
protected:
friend class base::RefCountedThreadSafe<NotificationObjectProxy>;
- virtual ~NotificationObjectProxy();
+ ~NotificationObjectProxy() override;
private:
scoped_ptr<content::DesktopNotificationDelegate> delegate_;
« no previous file with comments | « chrome/browser/notifications/notification_delegate.h ('k') | chrome/browser/notifications/notification_system_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698