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 [nodoc] namespace webrtcLoggingPrivate { | 7 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 // Stops RTP dumping. After stop has finished, the dumps will be | 79 // Stops RTP dumping. After stop has finished, the dumps will be |
80 // uploaded with the log if upload is called. Otherwise, the dumps will be | 80 // uploaded with the log if upload is called. Otherwise, the dumps will be |
81 // discarded. | 81 // discarded. |
82 static void stopRtpDump(long tabId, | 82 static void stopRtpDump(long tabId, |
83 DOMString securityOrigin, | 83 DOMString securityOrigin, |
84 boolean incoming, | 84 boolean incoming, |
85 boolean outgoing, | 85 boolean outgoing, |
86 GenericDoneCallback callback); | 86 GenericDoneCallback callback); |
87 }; | 87 }; |
88 }; | 88 }; |
OLD | NEW |