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

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

Issue 2664673002: Media Capture Depth Stream Extensions API: videoKind settings and constraint. (Closed)
Patch Set: Created 3 years, 10 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 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 BooleanConstraint disableLocalEcho;
233 StringConstraint groupId; 233 StringConstraint groupId;
234 // https://w3c.github.io/mediacapture-depth/#mediatrackconstraints
235 StringConstraint videoKind;
234 // Constraints not exposed in Blink at the moment, only through 236 // Constraints not exposed in Blink at the moment, only through
235 // the legacy name interface. 237 // the legacy name interface.
236 StringConstraint mediaStreamSource; // tab, screen, desktop, system 238 StringConstraint mediaStreamSource; // tab, screen, desktop, system
237 BooleanConstraint renderToAssociatedSink; 239 BooleanConstraint renderToAssociatedSink;
238 BooleanConstraint hotwordEnabled; 240 BooleanConstraint hotwordEnabled;
239 BooleanConstraint googEchoCancellation; 241 BooleanConstraint googEchoCancellation;
240 BooleanConstraint googExperimentalEchoCancellation; 242 BooleanConstraint googExperimentalEchoCancellation;
241 BooleanConstraint googAutoGainControl; 243 BooleanConstraint googAutoGainControl;
242 BooleanConstraint googExperimentalAutoGainControl; 244 BooleanConstraint googExperimentalAutoGainControl;
243 BooleanConstraint googNoiseSuppression; 245 BooleanConstraint googNoiseSuppression;
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
312 314
313 BLINK_PLATFORM_EXPORT const WebString toString() const; 315 BLINK_PLATFORM_EXPORT const WebString toString() const;
314 316
315 private: 317 private:
316 WebPrivatePtr<WebMediaConstraintsPrivate> m_private; 318 WebPrivatePtr<WebMediaConstraintsPrivate> m_private;
317 }; 319 };
318 320
319 } // namespace blink 321 } // namespace blink
320 322
321 #endif // WebMediaConstraints_h 323 #endif // WebMediaConstraints_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698