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

Unified Diff: content/browser/notification_service_impl.h

Issue 667943003: Standardize usage of virtual/override/final in content/browser/ (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
« no previous file with comments | « content/browser/net_info_browsertest.cc ('k') | content/browser/notification_service_impl_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/notification_service_impl.h
diff --git a/content/browser/notification_service_impl.h b/content/browser/notification_service_impl.h
index 7d0ecaa72e58823cc3f1cbd72a123ea1e58fbcc6..2df369a6d0ffad2a7f723efceb60b4c5c7f56c78 100644
--- a/content/browser/notification_service_impl.h
+++ b/content/browser/notification_service_impl.h
@@ -23,12 +23,12 @@ class CONTENT_EXPORT NotificationServiceImpl : public NotificationService {
// Normally instantiated when the thread is created. Not all threads have
// a NotificationService. Only one instance should be created per thread.
NotificationServiceImpl();
- virtual ~NotificationServiceImpl();
+ ~NotificationServiceImpl() override;
// NotificationService:
- virtual void Notify(int type,
- const NotificationSource& source,
- const NotificationDetails& details) override;
+ void Notify(int type,
+ const NotificationSource& source,
+ const NotificationDetails& details) override;
private:
friend class NotificationRegistrar;
« no previous file with comments | « content/browser/net_info_browsertest.cc ('k') | content/browser/notification_service_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698