summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgrunell@google.com <grunell@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2014-01-13 11:13:53 +0000
committergrunell@google.com <grunell@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2014-01-13 11:13:53 +0000
commitc5f2902ee82e01df29cdb6c71e76e076e32f6178 (patch)
treed57730ffe3e904d69bfdf1233975fda21fd6216c
parentd5f71001d0b974a854f727725783b2723119a616 (diff)
downloadchromium_src-c5f2902ee82e01df29cdb6c71e76e076e32f6178.zip
chromium_src-c5f2902ee82e01df29cdb6c71e76e076e32f6178.tar.gz
chromium_src-c5f2902ee82e01df29cdb6c71e76e076e32f6178.tar.bz2
Improve info text about diagnostic WebRTC audio (AEC) recordings.
BUG=332028 R=ajm@chromium.org, jansson@chromium.org, xians@chromium.org Review URL: https://codereview.chromium.org/133013004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@244484 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--content/browser/resources/media/dump_creator.js10
1 files changed, 7 insertions, 3 deletions
diff --git a/content/browser/resources/media/dump_creator.js b/content/browser/resources/media/dump_creator.js
index 70dee73..a6c8dda 100644
--- a/content/browser/resources/media/dump_creator.js
+++ b/content/browser/resources/media/dump_creator.js
@@ -36,9 +36,13 @@ var DumpCreator = (function() {
'<p>A diagnostic audio recording is used for analyzing audio' +
' problems. It contains the audio played out from the speaker and' +
' recorded from the microphone and is saved to the local disk.' +
- ' Checking this box will enable the recording for future WebRTC' +
- ' calls. When the box is unchecked or this page is closed, this' +
- ' recording functionality will be disabled.</p>';
+ ' Checking this box will enable the recording for an ongoing WebRTC' +
+ ' call and for future WebRTC calls. When the box is unchecked or this' +
+ ' page is closed, this recording functionality will be disabled for' +
+ ' future WebRTC calls, but an ongoing call will continue to record' +
+ ' until the call is ended. Only recording in one tab is supported.' +
+ ' If several tabs are running WebRTC calls, the resulting file will' +
+ ' be invalid.</p>';
content.getElementsByTagName('a')[0].addEventListener(
'click', this.onDownloadData_.bind(this));