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

Unified Diff: chrome/browser/policy/user_info_fetcher.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/policy/user_info_fetcher.h
diff --git a/chrome/browser/policy/user_info_fetcher.h b/chrome/browser/policy/user_info_fetcher.h
index a6e7982a8b3f9a5140ab825dda3758bdd6cd7c29..9f6128ccbf3430065a785f7c029059a5f209012c 100644
--- a/chrome/browser/policy/user_info_fetcher.h
+++ b/chrome/browser/policy/user_info_fetcher.h
@@ -38,6 +38,9 @@ class UserInfoFetcher : public net::URLFetcherDelegate {
// error in |error|. Delegate may free the UserInfoFetcher in this
// callback.
virtual void OnGetUserInfoFailure(const GoogleServiceAuthError& error) = 0;
+
+ protected:
+ virtual ~Delegate() { }
};
// Create a new UserInfoFetcher. |context| can be NULL for unit tests.

Powered by Google App Engine
This is Rietveld 408576698