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

Unified Diff: third_party/WebKit/Source/platform/mediastream/MediaStreamCenter.cpp

Issue 2501623003: Implement MediaStreamTrack contentHint skeleton. (Closed)
Patch Set: ContentHint -> ContentHintType Created 4 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
Index: third_party/WebKit/Source/platform/mediastream/MediaStreamCenter.cpp
diff --git a/third_party/WebKit/Source/platform/mediastream/MediaStreamCenter.cpp b/third_party/WebKit/Source/platform/mediastream/MediaStreamCenter.cpp
index 9fd18879165ee2555461be3b6cfabe137fd39d90..468c511790c4942c3524d14ec849cd45490669e8 100644
--- a/third_party/WebKit/Source/platform/mediastream/MediaStreamCenter.cpp
+++ b/third_party/WebKit/Source/platform/mediastream/MediaStreamCenter.cpp
@@ -116,6 +116,11 @@ void MediaStreamCenter::didCreateMediaStreamTrack(MediaStreamComponent* track) {
m_private->didCreateMediaStreamTrack(track);
}
+void MediaStreamCenter::didSetContentHint(MediaStreamComponent* track) {
+ if (m_private)
+ m_private->didSetContentHint(track);
+}
+
std::unique_ptr<AudioSourceProvider>
MediaStreamCenter::createWebAudioSourceFromMediaStreamTrack(
MediaStreamComponent* track) {

Powered by Google App Engine
This is Rietveld 408576698