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

Side by Side Diff: third_party/WebKit/Source/modules/mediastream/MediaStreamTrack.cpp

Issue 2590193002: Add FacingMode to MediaStreamTrack.getSettings() (Closed)
Patch Set: Layout test, with TODO 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * Copyright (C) 2011 Ericsson AB. All rights reserved. 3 * Copyright (C) 2011 Ericsson AB. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 if (platformSettings.hasFrameRate()) { 222 if (platformSettings.hasFrameRate()) {
223 settings.setFrameRate(platformSettings.frameRate); 223 settings.setFrameRate(platformSettings.frameRate);
224 } 224 }
225 if (platformSettings.hasWidth()) { 225 if (platformSettings.hasWidth()) {
226 settings.setWidth(platformSettings.width); 226 settings.setWidth(platformSettings.width);
227 } 227 }
228 if (platformSettings.hasHeight()) { 228 if (platformSettings.hasHeight()) {
229 settings.setHeight(platformSettings.height); 229 settings.setHeight(platformSettings.height);
230 } 230 }
231 settings.setDeviceId(platformSettings.deviceId); 231 settings.setDeviceId(platformSettings.deviceId);
232 if (platformSettings.hasFacingMode()) {
233 switch (platformSettings.facingMode) {
234 case WebMediaStreamTrack::FacingMode::User:
235 settings.setFacingMode("user");
236 break;
237 case WebMediaStreamTrack::FacingMode::Environment:
238 settings.setFacingMode("environment");
239 break;
240 case WebMediaStreamTrack::FacingMode::Left:
241 settings.setFacingMode("left");
242 break;
243 case WebMediaStreamTrack::FacingMode::Right:
244 settings.setFacingMode("right");
245 break;
246 default:
247 // None, or unknown facing mode. Ignore.
248 break;
249 }
250 }
232 } 251 }
233 252
234 bool MediaStreamTrack::ended() const { 253 bool MediaStreamTrack::ended() const {
235 return m_stopped || (m_readyState == MediaStreamSource::ReadyStateEnded); 254 return m_stopped || (m_readyState == MediaStreamSource::ReadyStateEnded);
236 } 255 }
237 256
238 void MediaStreamTrack::sourceChangedState() { 257 void MediaStreamTrack::sourceChangedState() {
239 if (ended()) 258 if (ended())
240 return; 259 return;
241 260
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
314 } 333 }
315 334
316 DEFINE_TRACE(MediaStreamTrack) { 335 DEFINE_TRACE(MediaStreamTrack) {
317 visitor->trace(m_registeredMediaStreams); 336 visitor->trace(m_registeredMediaStreams);
318 visitor->trace(m_component); 337 visitor->trace(m_component);
319 EventTargetWithInlineData::trace(visitor); 338 EventTargetWithInlineData::trace(visitor);
320 ContextLifecycleObserver::trace(visitor); 339 ContextLifecycleObserver::trace(visitor);
321 } 340 }
322 341
323 } // namespace blink 342 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698