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

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: Rebased 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 | « media/filters/ffmpeg_video_decoder.cc ('k') | media/filters/file_data_source.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/filters/file_data_source.h
diff --git a/media/filters/file_data_source.h b/media/filters/file_data_source.h
index bcbc591222cdc142603292a9eb2d14d29356bf45..f18076710439f9d9530fa13576e3c4c986c73c97 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);
@@ -32,6 +31,9 @@ class MEDIA_EXPORT FileDataSource : public DataSource {
virtual bool IsStreaming() OVERRIDE;
virtual void SetBitrate(int bitrate) OVERRIDE;
+ protected:
+ virtual ~FileDataSource();
+
private:
// Informs the host of changes in total and buffered bytes.
void UpdateHostBytes();
« no previous file with comments | « media/filters/ffmpeg_video_decoder.cc ('k') | media/filters/file_data_source.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698