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

Side by Side Diff: third_party/WebKit/public/platform/WebMediaConstraints.h

Issue 2291893002: Let Contraints Controll Mute/Unmute Audio Local Playback For Desktop Sharing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rename To DisableLocalEcho Created 4 years, 3 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) 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 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 renderToAssociatedSink; 259 BooleanConstraint renderToAssociatedSink;
260 BooleanConstraint hotwordEnabled; 260 BooleanConstraint hotwordEnabled;
261 BooleanConstraint googDisableLocalEcho;
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;
269 BooleanConstraint googBeamforming; 270 BooleanConstraint googBeamforming;
270 StringConstraint googArrayGeometry; 271 StringConstraint googArrayGeometry;
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698