| Index: content/browser/resources/media/dump_creator.js
|
| diff --git a/content/browser/resources/media/dump_creator.js b/content/browser/resources/media/dump_creator.js
|
| index e412f3623bcb998e8a795a2653a44d9b534cef32..019d7b30ec12229bd1ac71ae866d04feef02cd9c 100644
|
| --- a/content/browser/resources/media/dump_creator.js
|
| +++ b/content/browser/resources/media/dump_creator.js
|
| @@ -57,17 +57,17 @@ var DumpCreator = (function() {
|
| content.getElementsByTagName('a')[0].addEventListener(
|
| 'click', this.onDownloadData_.bind(this));
|
| content.getElementsByTagName('input')[0].addEventListener(
|
| - 'click', this.onAecRecordingChanged_.bind(this));
|
| + 'click', this.onAudioDebugRecordingsChanged_.bind(this));
|
| }
|
|
|
| DumpCreator.prototype = {
|
| - // Mark the AEC recording checkbox checked.
|
| - enableAecRecording: function() {
|
| + // Mark the diagnostic audio recording checkbox checked.
|
| + enableAudioDebugRecordings: function() {
|
| this.root_.getElementsByTagName('input')[0].checked = true;
|
| },
|
|
|
| - // Mark the AEC recording checkbox unchecked.
|
| - disableAecRecording: function() {
|
| + // Mark the diagnostic audio recording checkbox unchecked.
|
| + disableAudioDebugRecordings: function() {
|
| this.root_.getElementsByTagName('input')[0].checked = false;
|
| },
|
|
|
| @@ -93,16 +93,16 @@ var DumpCreator = (function() {
|
| },
|
|
|
| /**
|
| - * Handles the event of toggling the AEC recording state.
|
| + * Handles the event of toggling the audio debug recordings state.
|
| *
|
| * @private
|
| */
|
| - onAecRecordingChanged_: function() {
|
| + onAudioDebugRecordingsChanged_: function() {
|
| var enabled = this.root_.getElementsByTagName('input')[0].checked;
|
| if (enabled) {
|
| - chrome.send('enableAecRecording');
|
| + chrome.send('enableAudioDebugRecordings');
|
| } else {
|
| - chrome.send('disableAecRecording');
|
| + chrome.send('disableAudioDebugRecordings');
|
| }
|
| },
|
| };
|
|
|