OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * 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 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
350 facingMode("facingMode"), | 350 facingMode("facingMode"), |
351 volume("volume"), | 351 volume("volume"), |
352 sampleRate("sampleRate"), | 352 sampleRate("sampleRate"), |
353 sampleSize("sampleSize"), | 353 sampleSize("sampleSize"), |
354 echoCancellation("echoCancellation"), | 354 echoCancellation("echoCancellation"), |
355 latency("latency"), | 355 latency("latency"), |
356 channelCount("channelCount"), | 356 channelCount("channelCount"), |
357 deviceId("deviceId"), | 357 deviceId("deviceId"), |
358 disableLocalEcho("disableLocalEcho"), | 358 disableLocalEcho("disableLocalEcho"), |
359 groupId("groupId"), | 359 groupId("groupId"), |
| 360 videoKind("videoKind"), |
360 mediaStreamSource("mediaStreamSource"), | 361 mediaStreamSource("mediaStreamSource"), |
361 renderToAssociatedSink("chromeRenderToAssociatedSink"), | 362 renderToAssociatedSink("chromeRenderToAssociatedSink"), |
362 hotwordEnabled("hotwordEnabled"), | 363 hotwordEnabled("hotwordEnabled"), |
363 googEchoCancellation("googEchoCancellation"), | 364 googEchoCancellation("googEchoCancellation"), |
364 googExperimentalEchoCancellation("googExperimentalEchoCancellation"), | 365 googExperimentalEchoCancellation("googExperimentalEchoCancellation"), |
365 googAutoGainControl("googAutoGainControl"), | 366 googAutoGainControl("googAutoGainControl"), |
366 googExperimentalAutoGainControl("googExperimentalAutoGainControl"), | 367 googExperimentalAutoGainControl("googExperimentalAutoGainControl"), |
367 googNoiseSuppression("googNoiseSuppression"), | 368 googNoiseSuppression("googNoiseSuppression"), |
368 googHighpassFilter("googHighpassFilter"), | 369 googHighpassFilter("googHighpassFilter"), |
369 googTypingNoiseDetection("googTypingNoiseDetection"), | 370 googTypingNoiseDetection("googTypingNoiseDetection"), |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
406 &frameRate, | 407 &frameRate, |
407 &facingMode, | 408 &facingMode, |
408 &volume, | 409 &volume, |
409 &sampleRate, | 410 &sampleRate, |
410 &sampleSize, | 411 &sampleSize, |
411 &echoCancellation, | 412 &echoCancellation, |
412 &latency, | 413 &latency, |
413 &channelCount, | 414 &channelCount, |
414 &deviceId, | 415 &deviceId, |
415 &groupId, | 416 &groupId, |
| 417 &videoKind, |
416 &mediaStreamSource, | 418 &mediaStreamSource, |
417 &disableLocalEcho, | 419 &disableLocalEcho, |
418 &renderToAssociatedSink, | 420 &renderToAssociatedSink, |
419 &hotwordEnabled, | 421 &hotwordEnabled, |
420 &googEchoCancellation, | 422 &googEchoCancellation, |
421 &googExperimentalEchoCancellation, | 423 &googExperimentalEchoCancellation, |
422 &googAutoGainControl, | 424 &googAutoGainControl, |
423 &googExperimentalAutoGainControl, | 425 &googExperimentalAutoGainControl, |
424 &googNoiseSuppression, | 426 &googNoiseSuppression, |
425 &googHighpassFilter, | 427 &googHighpassFilter, |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
538 return m_private->advanced(); | 540 return m_private->advanced(); |
539 } | 541 } |
540 | 542 |
541 const WebString WebMediaConstraints::toString() const { | 543 const WebString WebMediaConstraints::toString() const { |
542 if (isNull()) | 544 if (isNull()) |
543 return WebString(""); | 545 return WebString(""); |
544 return m_private->toString(); | 546 return m_private->toString(); |
545 } | 547 } |
546 | 548 |
547 } // namespace blink | 549 } // namespace blink |
OLD | NEW |