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

Unified Diff: trunk/src/content/renderer/media/media_stream_video_source.h

Issue 231963002: Revert 262050 "Implement a source for remote video tracks." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 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: trunk/src/content/renderer/media/media_stream_video_source.h
===================================================================
--- trunk/src/content/renderer/media/media_stream_video_source.h (revision 262817)
+++ trunk/src/content/renderer/media/media_stream_video_source.h (working copy)
@@ -64,7 +64,7 @@
// interface of this class.
// This creates a VideoSourceInterface implementation if it does not already
// exist.
- virtual webrtc::VideoSourceInterface* GetAdapter();
+ webrtc::VideoSourceInterface* GetAdapter();
// Return true if |name| is a constraint supported by MediaStreamVideoSource.
static bool IsConstraintSupported(const std::string& name);
@@ -130,7 +130,7 @@
STARTED,
ENDED
};
- State state() const { return state_; }
+ State state() { return state_; }
private:
// Creates a webrtc::VideoSourceInterface used by libjingle.

Powered by Google App Engine
This is Rietveld 408576698