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

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: 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 9eb7504eefbcdef11472a4abda6cfada77bfbac7..60cb40044866c0a30b261767b9e72c6c232e1088 100644
--- a/content/renderer/pepper/pepper_platform_video_capture_impl.h
+++ b/content/renderer/pepper/pepper_platform_video_capture_impl.h
@@ -31,7 +31,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(media::VideoCapture::EventHandler* handler,
@@ -57,6 +56,8 @@ class PepperPlatformVideoCaptureImpl
const media::VideoCaptureParams& device_info) OVERRIDE;
private:
+ virtual ~PepperPlatformVideoCaptureImpl();
+
void Initialize();
void OnDeviceOpened(int request_id,

Powered by Google App Engine
This is Rietveld 408576698