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

Side by Side Diff: third_party/closure_compiler/externs/mime_handler_private.js

Issue 2896433002: WebUI: Add externs from chrome.mimeHandlerPrivate API. (Closed)
Patch Set: Nit Created 3 years, 7 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
« no previous file with comments | « third_party/closure_compiler/externs/compiled_resources2.gyp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 /** @fileoverview Externs generated from namespace: mimeHandlerPrivate */
6
7 /** @const */
8 chrome.mimeHandlerPrivate = {};
9
10 /**
11 * @typedef {?{
12 * embedded: boolean,
13 * mimeType: string,
14 * originalUrl: string,
15 * responseHeaders: !Object,
16 * streamUrl: string,
17 * tabId: number
18 * }}
19 */
20 chrome.mimeHandlerPrivate.StreamInfo;
21
22 /**
23 * @param {function(!chrome.mimeHandlerPrivate.StreamInfo): void} callback
24 */
25 chrome.mimeHandlerPrivate.getStreamInfo = function(callback) {}
26
27 /**
28 * @param {function(): void=} opt_callback
29 */
30 chrome.mimeHandlerPrivate.abortStream = function(opt_callback) {}
OLDNEW
« no previous file with comments | « third_party/closure_compiler/externs/compiled_resources2.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698