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

Unified Diff: chrome/browser/profiles/profile.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/profiles/profile.h
diff --git a/chrome/browser/profiles/profile.h b/chrome/browser/profiles/profile.h
index 02d1b090cdef57a682c69b6625a3b4b01521959e..f0a78c22530047e09413d0b9bb254e2895c3f17f 100644
--- a/chrome/browser/profiles/profile.h
+++ b/chrome/browser/profiles/profile.h
@@ -125,6 +125,9 @@ class Profile : public content::BrowserContext {
virtual void OnProfileCreated(Profile* profile,
bool success,
bool is_new_profile) = 0;
+
+ protected:
+ virtual ~Delegate() { }
};
// Key used to bind profile to the widget with which it is associated.

Powered by Google App Engine
This is Rietveld 408576698