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

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

Issue 1833053004: [Extensions] Convert APIs to use movable types [10] (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months 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 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
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 };
OLDNEW
« no previous file with comments | « chrome/common/extensions/api/webrtc_desktop_capture_private.idl ('k') | chrome/common/extensions/api/webstore.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698