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

Unified Diff: chrome/browser/extensions/extension_warning_service.h

Issue 12086018: GTTF: Add missing virtual destructors. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes Created 7 years, 11 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/extensions/extension_warning_service.h
diff --git a/chrome/browser/extensions/extension_warning_service.h b/chrome/browser/extensions/extension_warning_service.h
index 03e8499bc4b2f7daf3ace181219a01cd726f478d..8766ebc390e5a2d35fc1ada27c3b1a905f2b4f37 100644
--- a/chrome/browser/extensions/extension_warning_service.h
+++ b/chrome/browser/extensions/extension_warning_service.h
@@ -37,6 +37,9 @@ class ExtensionWarningService : public content::NotificationObserver,
class Observer {
public:
virtual void ExtensionWarningsChanged() = 0;
+
+ protected:
+ virtual ~Observer() { }
};
// |profile| may be NULL for testing. In this case, be sure to not insert

Powered by Google App Engine
This is Rietveld 408576698