Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 // Streams Private API. | |
|
not at google - send to devlin
2014/02/13 18:28:16
this was just a presubmit warning.
| |
| 5 namespace streamsPrivate { | 6 namespace streamsPrivate { |
| 6 interface Events { | 7 interface Events { |
| 7 // Fired when a resource is fetched which matches a mime type handled by | 8 // 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 // 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 // expected to handle the request. The event is restricted to a small number |
| 10 // of white-listed extensions. | 11 // of white-listed extensions. |
| 11 static void onExecuteMimeTypeHandler( | 12 static void onExecuteMimeTypeHandler( |
| 12 // The MIME type of the intercepted URL request. | 13 // The MIME type of the intercepted URL request. |
| 13 DOMString mimeType, | 14 DOMString mimeType, |
| 14 // The original URL that was intercepted. | 15 // The original URL that was intercepted. |
| 15 DOMString originalUrl, | 16 DOMString originalUrl, |
| 16 // The URL that the stream can be read from. | 17 // The URL that the stream can be read from. |
| 17 DOMString streamUrl, | 18 DOMString streamUrl, |
| 18 // The ID of the tab that opened the stream. If the stream is not opened | 19 // The ID of the tab that opened the stream. If the stream is not opened |
| 19 // in a tab, it will be -1. | 20 // in a tab, it will be -1. |
| 20 long tabId, | 21 long tabId, |
| 21 // The amount of data the Stream should contain, if known. If there is | 22 // The amount of data the Stream should contain, if known. If there is |
| 22 // no information on the size it will be -1. | 23 // no information on the size it will be -1. |
| 23 long expectedContentSize); | 24 long expectedContentSize |
| 25 ); | |
| 24 }; | 26 }; |
| 25 }; | 27 }; |
| OLD | NEW |