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

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

Issue 132793014: Change streamsPrivate to use an IDL definition file. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « chrome/common/extensions/api/api.gyp ('k') | chrome/common/extensions/api/streams_private.json » ('j') | 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 (c) 2014 The Chromium Authors. All rights reserved.
Lei Zhang 2014/02/13 01:30:17 nit: no more (c)
Zachary Kuznia 2014/02/13 01:36:03 Done.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 namespace streamsPrivate {
6 interface Events {
7 // Fired when a resource is fetched which matches a mime type handled by
8 // this extension. The resource request is cancelled, and the extension is
9 // expected to handle the request. The event is restricted to a small number
10 // of white-listed extensions.
11 static void onExecuteMimeTypeHandler(
12 // The MIME type of the intercepted URL request.
13 DOMString mimeType,
14 // The original URL that was intercepted.
15 DOMString originalUrl,
16 // The URL that the stream can be read from.
17 DOMString streamUrl,
18 // The ID of the tab that opened the stream. If the stream is not opened
19 // in a tab, it will be -1.
20 long tabId,
21 // The amount of data the Stream should contain, if known. If there is
22 // no information on the size it will be -1.
23 long expectedContentSize);
24 };
25 };
OLDNEW
« no previous file with comments | « chrome/common/extensions/api/api.gyp ('k') | chrome/common/extensions/api/streams_private.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698