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

Unified Diff: media/base/stream_parser_buffer.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/base/mock_callback.cc ('k') | media/base/stream_parser_buffer.cc » ('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 fb362137ec5e81b0eb0f16c662b4b887f6917fb1..cdd01c5d5ef1779ab5bd2536eb3a936684d1f59d 100644
--- a/media/base/stream_parser_buffer.h
+++ b/media/base/stream_parser_buffer.h
@@ -22,7 +22,7 @@ class MEDIA_EXPORT StreamParserBuffer : public DataBuffer {
private:
StreamParserBuffer(const uint8* data, int data_size, bool is_keyframe);
- virtual ~StreamParserBuffer() {}
+ virtual ~StreamParserBuffer();
bool is_keyframe_;
DISALLOW_COPY_AND_ASSIGN(StreamParserBuffer);
« no previous file with comments | « media/base/mock_callback.cc ('k') | media/base/stream_parser_buffer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698