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

Side by Side Diff: chrome/common/extensions/api/webrtc_logging_private.idl

Issue 754693004: Cleanup: remove the namespace-level nodoc annotations from Extension API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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
OLDNEW
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
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 };
OLDNEW
« no previous file with comments | « chrome/common/extensions/api/webrtc_audio_private.idl ('k') | extensions/common/api/app_current_window_internal.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698