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

Unified Diff: content/renderer/pepper/pepper_platform_video_capture_impl.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
Index: content/renderer/pepper/pepper_platform_video_capture_impl.h
diff --git a/content/renderer/pepper/pepper_platform_video_capture_impl.h b/content/renderer/pepper/pepper_platform_video_capture_impl.h
index 02fe6ab0954b9a46205d0e769373c674e35bbd1e..a4fe0df38e864ed5dfa62337e16682d1311f506f 100644
--- a/content/renderer/pepper/pepper_platform_video_capture_impl.h
+++ b/content/renderer/pepper/pepper_platform_video_capture_impl.h
@@ -32,7 +32,6 @@ class PepperPlatformVideoCaptureImpl
const base::WeakPtr<PepperPluginDelegateImpl>& plugin_delegate,
const std::string& device_id,
webkit::ppapi::PluginDelegate::PlatformVideoCaptureEventHandler* handler);
- virtual ~PepperPlatformVideoCaptureImpl();
// webkit::ppapi::PluginDelegate::PlatformVideoCapture implementation.
virtual void StartCapture(
@@ -58,6 +57,9 @@ class PepperPlatformVideoCaptureImpl
VideoCapture* capture,
const media::VideoCaptureParams& device_info) OVERRIDE;
+ protected:
+ virtual ~PepperPlatformVideoCaptureImpl();
+
private:
void Initialize();

Powered by Google App Engine
This is Rietveld 408576698