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

Unified Diff: chrome/browser/google_apis/auth_service_interface.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/google_apis/auth_service_interface.h
diff --git a/chrome/browser/google_apis/auth_service_interface.h b/chrome/browser/google_apis/auth_service_interface.h
index 8275964139a22e62038249423bfc0d95d3c5bb27..68561dfca1b23c2a7953ab820276fad3e121176a 100644
--- a/chrome/browser/google_apis/auth_service_interface.h
+++ b/chrome/browser/google_apis/auth_service_interface.h
@@ -55,6 +55,9 @@ class AuthServiceInterface {
// Clears OAuth2 access token.
virtual void ClearAccessToken() = 0;
+
+ protected:
+ virtual ~AuthServiceInterface() { }
};
} // namespace google_apis

Powered by Google App Engine
This is Rietveld 408576698