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

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

Issue 1510593002: Quick fix for CanvasCaptureHandler dtor (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/media/canvas_capture_handler.h
diff --git a/content/renderer/media/canvas_capture_handler.h b/content/renderer/media/canvas_capture_handler.h
index a7d54d2cb784768101cdc4b7daefd0258fa70ff8..5d6fd5c1d40acf96c8e03141217e9036da5e1015 100644
--- a/content/renderer/media/canvas_capture_handler.h
+++ b/content/renderer/media/canvas_capture_handler.h
@@ -26,6 +26,7 @@ class CONTENT_EXPORT CanvasCaptureHandler final
CanvasCaptureHandler(const blink::WebSize& size,
double frame_rate,
blink::WebMediaStream* stream);
+ ~CanvasCaptureHandler() override;
// blink::WebCanvasCaptureHandler Implementation.
void sendNewFrame(const blink::WebSkImage& image) override;
@@ -41,8 +42,6 @@ class CONTENT_EXPORT CanvasCaptureHandler final
blink::WebSize GetSourceSize() const { return size_; }
private:
- virtual ~CanvasCaptureHandler();
-
void CreateNewFrame(const blink::WebSkImage& image);
// Implementation VideoCapturerSource that is owned by blink and delegates
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698