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

Side by Side Diff: third_party/WebKit/Source/platform/exported/WebMediaConstraints.cpp

Issue 1800163002: Fix a spelling mistake in a constraint name (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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 | « no previous file | 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 428 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698