| 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 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 LongConstraint sampleRate; | 249 LongConstraint sampleRate; |
| 250 LongConstraint sampleSize; | 250 LongConstraint sampleSize; |
| 251 BooleanConstraint echoCancellation; | 251 BooleanConstraint echoCancellation; |
| 252 DoubleConstraint latency; | 252 DoubleConstraint latency; |
| 253 LongConstraint channelCount; | 253 LongConstraint channelCount; |
| 254 StringConstraint deviceId; | 254 StringConstraint deviceId; |
| 255 StringConstraint groupId; | 255 StringConstraint groupId; |
| 256 // Constraints not exposed in Blink at the moment, only through | 256 // Constraints not exposed in Blink at the moment, only through |
| 257 // the legacy name interface. | 257 // the legacy name interface. |
| 258 StringConstraint mediaStreamSource; // tab, screen, desktop, system | 258 StringConstraint mediaStreamSource; // tab, screen, desktop, system |
| 259 BooleanConstraint muteSourceAudio; |
| 259 BooleanConstraint renderToAssociatedSink; | 260 BooleanConstraint renderToAssociatedSink; |
| 260 BooleanConstraint hotwordEnabled; | 261 BooleanConstraint hotwordEnabled; |
| 261 BooleanConstraint googEchoCancellation; | 262 BooleanConstraint googEchoCancellation; |
| 262 BooleanConstraint googExperimentalEchoCancellation; | 263 BooleanConstraint googExperimentalEchoCancellation; |
| 263 BooleanConstraint googAutoGainControl; | 264 BooleanConstraint googAutoGainControl; |
| 264 BooleanConstraint googExperimentalAutoGainControl; | 265 BooleanConstraint googExperimentalAutoGainControl; |
| 265 BooleanConstraint googNoiseSuppression; | 266 BooleanConstraint googNoiseSuppression; |
| 266 BooleanConstraint googHighpassFilter; | 267 BooleanConstraint googHighpassFilter; |
| 267 BooleanConstraint googTypingNoiseDetection; | 268 BooleanConstraint googTypingNoiseDetection; |
| 268 BooleanConstraint googExperimentalNoiseSuppression; | 269 BooleanConstraint googExperimentalNoiseSuppression; |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 332 | 333 |
| 333 BLINK_PLATFORM_EXPORT const WebString toString() const; | 334 BLINK_PLATFORM_EXPORT const WebString toString() const; |
| 334 | 335 |
| 335 private: | 336 private: |
| 336 WebPrivatePtr<WebMediaConstraintsPrivate> m_private; | 337 WebPrivatePtr<WebMediaConstraintsPrivate> m_private; |
| 337 }; | 338 }; |
| 338 | 339 |
| 339 } // namespace blink | 340 } // namespace blink |
| 340 | 341 |
| 341 #endif // WebMediaConstraints_h | 342 #endif // WebMediaConstraints_h |
| OLD | NEW |