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

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: Rebase Created 4 years, 2 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
« no previous file with comments | « third_party/WebKit/Source/platform/exported/WebMediaConstraints.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 DoubleConstraint aspectRatio; 222 DoubleConstraint aspectRatio;
223 DoubleConstraint frameRate; 223 DoubleConstraint frameRate;
224 StringConstraint facingMode; 224 StringConstraint facingMode;
225 DoubleConstraint volume; 225 DoubleConstraint volume;
226 LongConstraint sampleRate; 226 LongConstraint sampleRate;
227 LongConstraint sampleSize; 227 LongConstraint sampleSize;
228 BooleanConstraint echoCancellation; 228 BooleanConstraint echoCancellation;
229 DoubleConstraint latency; 229 DoubleConstraint latency;
230 LongConstraint channelCount; 230 LongConstraint channelCount;
231 StringConstraint deviceId; 231 StringConstraint deviceId;
232 BooleanConstraint disableLocalEcho;
232 StringConstraint groupId; 233 StringConstraint groupId;
233 // Constraints not exposed in Blink at the moment, only through 234 // Constraints not exposed in Blink at the moment, only through
234 // the legacy name interface. 235 // the legacy name interface.
235 StringConstraint mediaStreamSource; // tab, screen, desktop, system 236 StringConstraint mediaStreamSource; // tab, screen, desktop, system
236 BooleanConstraint renderToAssociatedSink; 237 BooleanConstraint renderToAssociatedSink;
237 BooleanConstraint hotwordEnabled; 238 BooleanConstraint hotwordEnabled;
238 BooleanConstraint googEchoCancellation; 239 BooleanConstraint googEchoCancellation;
239 BooleanConstraint googExperimentalEchoCancellation; 240 BooleanConstraint googExperimentalEchoCancellation;
240 BooleanConstraint googAutoGainControl; 241 BooleanConstraint googAutoGainControl;
241 BooleanConstraint googExperimentalAutoGainControl; 242 BooleanConstraint googExperimentalAutoGainControl;
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
311 312
312 BLINK_PLATFORM_EXPORT const WebString toString() const; 313 BLINK_PLATFORM_EXPORT const WebString toString() const;
313 314
314 private: 315 private:
315 WebPrivatePtr<WebMediaConstraintsPrivate> m_private; 316 WebPrivatePtr<WebMediaConstraintsPrivate> m_private;
316 }; 317 };
317 318
318 } // namespace blink 319 } // namespace blink
319 320
320 #endif // WebMediaConstraints_h 321 #endif // WebMediaConstraints_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/platform/exported/WebMediaConstraints.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698