| 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 428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 439 , channelCount("channelCount") | 439 , channelCount("channelCount") |
| 440 , deviceId("deviceId") | 440 , deviceId("deviceId") |
| 441 , groupId("groupId") | 441 , groupId("groupId") |
| 442 , mediaStreamSource("mediaStreamSource") | 442 , mediaStreamSource("mediaStreamSource") |
| 443 , renderToAssociatedSink("chromeRenderToAssociatedSink") | 443 , renderToAssociatedSink("chromeRenderToAssociatedSink") |
| 444 , hotwordEnabled("hotwordEnabled") | 444 , hotwordEnabled("hotwordEnabled") |
| 445 , googEchoCancellation("googEchoCancellation") | 445 , googEchoCancellation("googEchoCancellation") |
| 446 , googExperimentalEchoCancellation("googExperimentalEchoCancellation") | 446 , googExperimentalEchoCancellation("googExperimentalEchoCancellation") |
| 447 , googAutoGainControl("googAutoGainControl") | 447 , googAutoGainControl("googAutoGainControl") |
| 448 , googExperimentalAutoGainControl("googExperimentalAutoGainControl") | 448 , googExperimentalAutoGainControl("googExperimentalAutoGainControl") |
| 449 , googNoiseSuppression("gogNoiseSuppression") | 449 , googNoiseSuppression("googNoiseSuppression") |
| 450 , googHighpassFilter("googHighpassFilter") | 450 , googHighpassFilter("googHighpassFilter") |
| 451 , googTypingNoiseDetection("googTypingNoiseDetection") | 451 , googTypingNoiseDetection("googTypingNoiseDetection") |
| 452 , googExperimentalNoiseSuppression("googExperimentalNoiseSuppression") | 452 , googExperimentalNoiseSuppression("googExperimentalNoiseSuppression") |
| 453 , googBeamforming("googBeamforming") | 453 , googBeamforming("googBeamforming") |
| 454 , googArrayGeometry("googArrayGeometry") | 454 , googArrayGeometry("googArrayGeometry") |
| 455 , googAudioMirroring("googAudioMirroring") | 455 , googAudioMirroring("googAudioMirroring") |
| 456 , googDAEchoCancellation("googDAEchoCancellation") | 456 , googDAEchoCancellation("googDAEchoCancellation") |
| 457 , googNoiseReduction("googNoiseReduction") | 457 , googNoiseReduction("googNoiseReduction") |
| 458 , offerToReceiveAudio("offerToReceiveAudio") | 458 , offerToReceiveAudio("offerToReceiveAudio") |
| 459 , offerToReceiveVideo("offerToReceiveVideo") | 459 , offerToReceiveVideo("offerToReceiveVideo") |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 623 } | 623 } |
| 624 | 624 |
| 625 const WebString WebMediaConstraints::toString() const | 625 const WebString WebMediaConstraints::toString() const |
| 626 { | 626 { |
| 627 if (isNull()) | 627 if (isNull()) |
| 628 return WebString(""); | 628 return WebString(""); |
| 629 return m_private->toString(); | 629 return m_private->toString(); |
| 630 } | 630 } |
| 631 | 631 |
| 632 } // namespace blink | 632 } // namespace blink |
| OLD | NEW |