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

Unified Diff: chrome/browser/extensions/api/page_capture/page_capture_api.h

Issue 12086018: GTTF: Add missing virtual destructors. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix & rebase 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/api/page_capture/page_capture_api.h
diff --git a/chrome/browser/extensions/api/page_capture/page_capture_api.h b/chrome/browser/extensions/api/page_capture/page_capture_api.h
index 4d7e80fffff6246c263e81dc6e93f658738de8ca..2a4b07c6966cd76c099b443f6920ac4437a78eec 100644
--- a/chrome/browser/extensions/api/page_capture/page_capture_api.h
+++ b/chrome/browser/extensions/api/page_capture/page_capture_api.h
@@ -27,6 +27,8 @@ class PageCaptureSaveAsMHTMLFunction : public AsyncExtensionFunction {
// Test specific delegate used to test that the temporary file gets deleted.
class TestDelegate {
public:
+ virtual ~TestDelegate() { }
+
// Called on the UI thread when the temporary file that contains the
// generated data has been created.
virtual void OnTemporaryFileCreated(const FilePath& temp_file) = 0;

Powered by Google App Engine
This is Rietveld 408576698