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

Unified Diff: media/base/stream_parser_buffer.h

Issue 10392152: RefCounted types should not have public destructors, Linux fixes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 | « gpu/command_buffer/service/gl_surface_mock.h ('k') | media/tools/player_x11/data_source_logger.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/stream_parser_buffer.h
diff --git a/media/base/stream_parser_buffer.h b/media/base/stream_parser_buffer.h
index 1122e915b9c811fe2dff64c8dea93f3326b72705..fb362137ec5e81b0eb0f16c662b4b887f6917fb1 100644
--- a/media/base/stream_parser_buffer.h
+++ b/media/base/stream_parser_buffer.h
@@ -22,6 +22,7 @@ class MEDIA_EXPORT StreamParserBuffer : public DataBuffer {
private:
StreamParserBuffer(const uint8* data, int data_size, bool is_keyframe);
+ virtual ~StreamParserBuffer() {}
Ami GONE FROM CHROMIUM 2012/05/18 01:58:51 I realize that this was (implicitly) inline before
Ryan Sleevi 2012/05/18 02:07:20 Mostly due to the triviality of the dtor.
bool is_keyframe_;
DISALLOW_COPY_AND_ASSIGN(StreamParserBuffer);
« no previous file with comments | « gpu/command_buffer/service/gl_surface_mock.h ('k') | media/tools/player_x11/data_source_logger.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698