| 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 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 348 aspectRatio("aspectRatio"), | 348 aspectRatio("aspectRatio"), |
| 349 frameRate("frameRate"), | 349 frameRate("frameRate"), |
| 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 groupId("groupId"), | 359 groupId("groupId"), |
| 359 mediaStreamSource("mediaStreamSource"), | 360 mediaStreamSource("mediaStreamSource"), |
| 360 renderToAssociatedSink("chromeRenderToAssociatedSink"), | 361 renderToAssociatedSink("chromeRenderToAssociatedSink"), |
| 361 hotwordEnabled("hotwordEnabled"), | 362 hotwordEnabled("hotwordEnabled"), |
| 362 googEchoCancellation("googEchoCancellation"), | 363 googEchoCancellation("googEchoCancellation"), |
| 363 googExperimentalEchoCancellation("googExperimentalEchoCancellation"), | 364 googExperimentalEchoCancellation("googExperimentalEchoCancellation"), |
| 364 googAutoGainControl("googAutoGainControl"), | 365 googAutoGainControl("googAutoGainControl"), |
| 365 googExperimentalAutoGainControl("googExperimentalAutoGainControl"), | 366 googExperimentalAutoGainControl("googExperimentalAutoGainControl"), |
| 366 googNoiseSuppression("googNoiseSuppression"), | 367 googNoiseSuppression("googNoiseSuppression"), |
| 367 googHighpassFilter("googHighpassFilter"), | 368 googHighpassFilter("googHighpassFilter"), |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 406 &facingMode, | 407 &facingMode, |
| 407 &volume, | 408 &volume, |
| 408 &sampleRate, | 409 &sampleRate, |
| 409 &sampleSize, | 410 &sampleSize, |
| 410 &echoCancellation, | 411 &echoCancellation, |
| 411 &latency, | 412 &latency, |
| 412 &channelCount, | 413 &channelCount, |
| 413 &deviceId, | 414 &deviceId, |
| 414 &groupId, | 415 &groupId, |
| 415 &mediaStreamSource, | 416 &mediaStreamSource, |
| 417 &disableLocalEcho, |
| 416 &renderToAssociatedSink, | 418 &renderToAssociatedSink, |
| 417 &hotwordEnabled, | 419 &hotwordEnabled, |
| 418 &googEchoCancellation, | 420 &googEchoCancellation, |
| 419 &googExperimentalEchoCancellation, | 421 &googExperimentalEchoCancellation, |
| 420 &googAutoGainControl, | 422 &googAutoGainControl, |
| 421 &googExperimentalAutoGainControl, | 423 &googExperimentalAutoGainControl, |
| 422 &googNoiseSuppression, | 424 &googNoiseSuppression, |
| 423 &googHighpassFilter, | 425 &googHighpassFilter, |
| 424 &googTypingNoiseDetection, | 426 &googTypingNoiseDetection, |
| 425 &googExperimentalNoiseSuppression, | 427 &googExperimentalNoiseSuppression, |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 536 return m_private->advanced(); | 538 return m_private->advanced(); |
| 537 } | 539 } |
| 538 | 540 |
| 539 const WebString WebMediaConstraints::toString() const { | 541 const WebString WebMediaConstraints::toString() const { |
| 540 if (isNull()) | 542 if (isNull()) |
| 541 return WebString(""); | 543 return WebString(""); |
| 542 return m_private->toString(); | 544 return m_private->toString(); |
| 543 } | 545 } |
| 544 | 546 |
| 545 } // namespace blink | 547 } // namespace blink |
| OLD | NEW |