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

Unified Diff: webrtc/examples/peerconnection/client/linux/main_wnd.h

Issue 1817473002: Delete VideoRendererInterface. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebase. Created 4 years, 9 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 | « webrtc/api/videotrack_unittest.cc ('k') | webrtc/examples/peerconnection/client/main_wnd.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/examples/peerconnection/client/linux/main_wnd.h
diff --git a/webrtc/examples/peerconnection/client/linux/main_wnd.h b/webrtc/examples/peerconnection/client/linux/main_wnd.h
index a7eb25e9b1ea7ffa18ba1aaf6e1d6b308087e64a..e756fc98c4a6b935b9d1bbf681948c0b00a834b2 100644
--- a/webrtc/examples/peerconnection/client/linux/main_wnd.h
+++ b/webrtc/examples/peerconnection/client/linux/main_wnd.h
@@ -77,9 +77,8 @@ class GtkMainWnd : public MainWindow {
webrtc::VideoTrackInterface* track_to_render);
virtual ~VideoRenderer();
- // VideoRendererInterface implementation
- virtual void SetSize(int width, int height);
- virtual void OnFrame(const cricket::VideoFrame& frame);
+ // VideoSinkInterface implementation
+ void OnFrame(const cricket::VideoFrame& frame) override;
const uint8_t* image() const { return image_.get(); }
@@ -92,6 +91,7 @@ class GtkMainWnd : public MainWindow {
}
protected:
+ void SetSize(int width, int height);
rtc::scoped_ptr<uint8_t[]> image_;
int width_;
int height_;
« no previous file with comments | « webrtc/api/videotrack_unittest.cc ('k') | webrtc/examples/peerconnection/client/main_wnd.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698