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

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

Issue 2623263003: Update MediaStreamTrack content-hint values. (Closed)
Patch Set: Created 3 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: third_party/WebKit/Source/platform/mediastream/MediaStreamComponent.cpp
diff --git a/third_party/WebKit/Source/platform/mediastream/MediaStreamComponent.cpp b/third_party/WebKit/Source/platform/mediastream/MediaStreamComponent.cpp
index 6ffd532accc9921b7e77e6fefe040aefb1734d56..adfff70c1d9da0a84c514fecac4e7f982d960a29 100644
--- a/third_party/WebKit/Source/platform/mediastream/MediaStreamComponent.cpp
+++ b/third_party/WebKit/Source/platform/mediastream/MediaStreamComponent.cpp
@@ -106,8 +106,8 @@ void MediaStreamComponent::setContentHint(
case WebMediaStreamTrack::ContentHintType::AudioMusic:
DCHECK_EQ(MediaStreamSource::TypeAudio, source()->type());
break;
- case WebMediaStreamTrack::ContentHintType::VideoFluid:
- case WebMediaStreamTrack::ContentHintType::VideoDetailed:
+ case WebMediaStreamTrack::ContentHintType::VideoMotion:
+ case WebMediaStreamTrack::ContentHintType::VideoDetail:
DCHECK_EQ(MediaStreamSource::TypeVideo, source()->type());
break;
}

Powered by Google App Engine
This is Rietveld 408576698