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

Unified Diff: content/renderer/media/capture_video_decoder.h

Issue 10071038: RefCounted types should not have public destructors, content/browser part 2 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Copyright bump 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
« no previous file with comments | « content/renderer/media/audio_message_filter.cc ('k') | content/renderer/media/capture_video_decoder.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/media/capture_video_decoder.h
diff --git a/content/renderer/media/capture_video_decoder.h b/content/renderer/media/capture_video_decoder.h
index d4bbd25fa58af7741dd87381edf6b6b0714fb8c3..cafd533f1bf46a1480c441f62f523d89e67ea04b 100644
--- a/content/renderer/media/capture_video_decoder.h
+++ b/content/renderer/media/capture_video_decoder.h
@@ -30,7 +30,6 @@ class CONTENT_EXPORT CaptureVideoDecoder
media::VideoCaptureSessionId video_stream_id,
VideoCaptureImplManager* vc_manager,
const media::VideoCaptureCapability& capability);
- virtual ~CaptureVideoDecoder();
// Filter implementation.
virtual void Play(const base::Closure& callback) OVERRIDE;
@@ -61,6 +60,9 @@ class CONTENT_EXPORT CaptureVideoDecoder
media::VideoCapture* capture,
const media::VideoCaptureParams& device_info) OVERRIDE;
+ protected:
+ virtual ~CaptureVideoDecoder();
+
private:
friend class CaptureVideoDecoderTest;
« no previous file with comments | « content/renderer/media/audio_message_filter.cc ('k') | content/renderer/media/capture_video_decoder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698