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

Unified Diff: chrome/browser/ui/webui/fileicon_source_unittest.cc

Issue 10067033: RefCounted types should not have public destructors, chrome/browser/ui (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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/ui/webui/fileicon_source_unittest.cc
diff --git a/chrome/browser/ui/webui/fileicon_source_unittest.cc b/chrome/browser/ui/webui/fileicon_source_unittest.cc
index 19187090c2762bd8321867975dd5964e9b4ce504..c9d49b2e02ffbc70e2a4252682092a9ebb2df7ac 100644
--- a/chrome/browser/ui/webui/fileicon_source_unittest.cc
+++ b/chrome/browser/ui/webui/fileicon_source_unittest.cc
@@ -23,6 +23,9 @@ class TestFileIconSource : public FileIconSource {
MOCK_METHOD3(FetchFileIcon, void(const FilePath& path,
IconLoader::IconSize icon_size,
int request_id));
+
+ private:
+ virtual ~TestFileIconSource() {}
};
class FileIconSourceTest : public testing::Test {

Powered by Google App Engine
This is Rietveld 408576698