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

Unified Diff: content/test/mock_download_manager.h

Issue 10069054: RefCounted types should not have public destructors, content/ remaining bits (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased to Trunk Created 8 years, 7 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
« no previous file with comments | « content/shell/shell_login_dialog.cc ('k') | content/test/mock_download_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/mock_download_manager.h
diff --git a/content/test/mock_download_manager.h b/content/test/mock_download_manager.h
index 4fb8512cac1584631ec338c382dd9d03ad280094..6ced362f554971d50251157f21b6e4daeb5f7acf 100644
--- a/content/test/mock_download_manager.h
+++ b/content/test/mock_download_manager.h
@@ -21,7 +21,6 @@ namespace content {
class MockDownloadManager : public content::DownloadManager {
public:
MockDownloadManager();
- virtual ~MockDownloadManager();
// DownloadManager:
MOCK_METHOD0(Shutdown, void());
@@ -91,6 +90,9 @@ class MockDownloadManager : public content::DownloadManager {
const FilePath& chosen_file));
MOCK_METHOD1(GetActiveDownload, content::DownloadItem*(int32 download_id));
MOCK_METHOD1(SetFileManager, void(DownloadFileManager* file_manager));
+
+ protected:
+ virtual ~MockDownloadManager();
};
} // namespace content
« no previous file with comments | « content/shell/shell_login_dialog.cc ('k') | content/test/mock_download_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698