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

Unified Diff: ui/message_center/message_center_observer.h

Issue 1499793003: Fix classes that have too many virtuals for inline constructors. Base URL: https://chromium.googlesource.com/chromium/src.git@enable-virtuals-as-complexity
Patch Set: Finish fixing the codebase that's accessible from Linux. Created 5 years 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: ui/message_center/message_center_observer.h
diff --git a/ui/message_center/message_center_observer.h b/ui/message_center/message_center_observer.h
index 5ab0722be13c1e9323085dcd8bf4c6743837c74f..6c9790a42f7678d9f0c0122feac16d1ed61391fa 100644
--- a/ui/message_center/message_center_observer.h
+++ b/ui/message_center/message_center_observer.h
@@ -58,6 +58,9 @@ class MESSAGE_CENTER_EXPORT MessageCenterObserver {
// Called when the blocking state of |blocker| is changed.
virtual void OnBlockingStateChanged(NotificationBlocker* blocker) {}
+
+ protected:
+ MessageCenterObserver() = default;
};
} // namespace message_center

Powered by Google App Engine
This is Rietveld 408576698