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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/closure_compiler/externs/compiled_resources2.gyp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/closure_compiler/externs/mime_handler_private.js
diff --git a/third_party/closure_compiler/externs/mime_handler_private.js b/third_party/closure_compiler/externs/mime_handler_private.js
new file mode 100644
index 0000000000000000000000000000000000000000..b7486c5f6846d5207660124686f61a95b7f31cf1
--- /dev/null
+++ b/third_party/closure_compiler/externs/mime_handler_private.js
@@ -0,0 +1,30 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+/** @fileoverview Externs generated from namespace: mimeHandlerPrivate */
+
+/** @const */
+chrome.mimeHandlerPrivate = {};
+
+/**
+ * @typedef {?{
+ * embedded: boolean,
+ * mimeType: string,
+ * originalUrl: string,
+ * responseHeaders: !Object,
+ * streamUrl: string,
+ * tabId: number
+ * }}
+ */
+chrome.mimeHandlerPrivate.StreamInfo;
+
+/**
+ * @param {function(!chrome.mimeHandlerPrivate.StreamInfo): void} callback
+ */
+chrome.mimeHandlerPrivate.getStreamInfo = function(callback) {}
+
+/**
+ * @param {function(): void=} opt_callback
+ */
+chrome.mimeHandlerPrivate.abortStream = function(opt_callback) {}
« 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