| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Use the <code>chrome.webrtcLoggingPrivate</code> API to control diagnostic | 5 // Use the <code>chrome.webrtcLoggingPrivate</code> API to control diagnostic |
| 6 // WebRTC logging. | 6 // WebRTC logging. |
| 7 namespace webrtcLoggingPrivate { | 7 [use_movable_types=true] namespace webrtcLoggingPrivate { |
| 8 dictionary MetaDataEntry { | 8 dictionary MetaDataEntry { |
| 9 // The meta data entry key. | 9 // The meta data entry key. |
| 10 DOMString key; | 10 DOMString key; |
| 11 | 11 |
| 12 // The meta data entry value. | 12 // The meta data entry value. |
| 13 DOMString value; | 13 DOMString value; |
| 14 }; | 14 }; |
| 15 | 15 |
| 16 dictionary UploadResult { | 16 dictionary UploadResult { |
| 17 // The report ID for the uploaded log. Will be empty if not successful. | 17 // The report ID for the uploaded log. Will be empty if not successful. |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 AudioDebugRecordingsCallback callback); | 142 AudioDebugRecordingsCallback callback); |
| 143 | 143 |
| 144 // Stops audio debug recordings. |callback| is invoked once recording | 144 // Stops audio debug recordings. |callback| is invoked once recording |
| 145 // stops. If there is no recording in progress, stopAudioDebugRecordings() | 145 // stops. If there is no recording in progress, stopAudioDebugRecordings() |
| 146 // fails. | 146 // fails. |
| 147 static void stopAudioDebugRecordings(RequestInfo request, | 147 static void stopAudioDebugRecordings(RequestInfo request, |
| 148 DOMString securityOrigin, | 148 DOMString securityOrigin, |
| 149 AudioDebugRecordingsCallback callback); | 149 AudioDebugRecordingsCallback callback); |
| 150 }; | 150 }; |
| 151 }; | 151 }; |
| OLD | NEW |