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

Unified Diff: media/filters/file_data_source.h

Issue 10067035: RefCounted types should not have public destructors, media/ and gpu/ edition (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: media/filters/file_data_source.h
diff --git a/media/filters/file_data_source.h b/media/filters/file_data_source.h
index 100ead378386487272cec63b883e049fec878ff2..7b192530ed46568fb74ee50eb2b29c0cf3e23440 100644
--- a/media/filters/file_data_source.h
+++ b/media/filters/file_data_source.h
@@ -19,7 +19,6 @@ class MEDIA_EXPORT FileDataSource : public DataSource {
public:
FileDataSource();
FileDataSource(bool disable_file_size);
- virtual ~FileDataSource();
PipelineStatus Initialize(const std::string& url);
@@ -41,6 +40,8 @@ class MEDIA_EXPORT FileDataSource : public DataSource {
FRIEND_TEST_ALL_PREFIXES(FileDataSourceTest, ReadData);
FRIEND_TEST_ALL_PREFIXES(FileDataSourceTest, Seek);
+ virtual ~FileDataSource();
+
// Informs the host of changes in total and buffered bytes.
void UpdateHostBytes();

Powered by Google App Engine
This is Rietveld 408576698