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

Unified Diff: cc/video_frame_provider.h

Issue 12086018: GTTF: Add missing virtual destructors. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes Created 7 years, 11 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: cc/video_frame_provider.h
diff --git a/cc/video_frame_provider.h b/cc/video_frame_provider.h
index 8dd85f5e4edc7cd05b91e3255a7720413d942efa..24e37d5f7d3ea82b6aae7bf57068c8b0521543ed 100644
--- a/cc/video_frame_provider.h
+++ b/cc/video_frame_provider.h
@@ -35,6 +35,9 @@ class VideoFrameProvider {
// Notifies the provider's client of a new UV transform matrix to be used.
virtual void DidUpdateMatrix(const float*) = 0;
+
+ protected:
+ virtual ~Client() { }
};
// May be called from any thread, but there must be some external guarantee

Powered by Google App Engine
This is Rietveld 408576698