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

Unified Diff: content/public/browser/download_destination_observer.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: content/public/browser/download_destination_observer.h
diff --git a/content/public/browser/download_destination_observer.h b/content/public/browser/download_destination_observer.h
index dbe6cce24fbf7b8ebf3afc5d07cf4ec7d19d58dd..6ea97472d4de393fb24b698a6e3accab11ff2854 100644
--- a/content/public/browser/download_destination_observer.h
+++ b/content/public/browser/download_destination_observer.h
@@ -30,6 +30,9 @@ class DownloadDestinationObserver {
virtual void DestinationError(DownloadInterruptReason reason) = 0;
virtual void DestinationCompleted(const std::string& final_hash) = 0;
+
+ protected:
+ virtual ~DownloadDestinationObserver() { }
};
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698