| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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.downloads</code> API to programmatically initiate, | 5 // Use the <code>chrome.downloads</code> API to programmatically initiate, |
| 6 // monitor, manipulate, and search for downloads. | 6 // monitor, manipulate, and search for downloads. |
| 7 [permissions=downloads] | 7 [permissions=downloads] |
| 8 namespace downloads { | 8 namespace downloads { |
| 9 [inline_doc] dictionary HeaderNameValuePair { | 9 [inline_doc] dictionary HeaderNameValuePair { |
| 10 // Name of the HTTP header. | 10 // Name of the HTTP header. |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 FILE_TOO_LARGE, | 45 FILE_TOO_LARGE, |
| 46 FILE_VIRUS_INFECTED, | 46 FILE_VIRUS_INFECTED, |
| 47 FILE_TRANSIENT_ERROR, | 47 FILE_TRANSIENT_ERROR, |
| 48 FILE_BLOCKED, | 48 FILE_BLOCKED, |
| 49 FILE_SECURITY_CHECK_FAILED, | 49 FILE_SECURITY_CHECK_FAILED, |
| 50 FILE_TOO_SHORT, | 50 FILE_TOO_SHORT, |
| 51 NETWORK_FAILED, | 51 NETWORK_FAILED, |
| 52 NETWORK_TIMEOUT, | 52 NETWORK_TIMEOUT, |
| 53 NETWORK_DISCONNECTED, | 53 NETWORK_DISCONNECTED, |
| 54 NETWORK_SERVER_DOWN, | 54 NETWORK_SERVER_DOWN, |
| 55 NETWORK_INVALID_REQUEST, |
| 55 SERVER_FAILED, | 56 SERVER_FAILED, |
| 56 SERVER_NO_RANGE, | 57 SERVER_NO_RANGE, |
| 57 SERVER_PRECONDITION, | 58 SERVER_PRECONDITION, |
| 58 SERVER_BAD_CONTENT, | 59 SERVER_BAD_CONTENT, |
| 59 USER_CANCELED, | 60 USER_CANCELED, |
| 60 USER_SHUTDOWN, | 61 USER_SHUTDOWN, |
| 61 CRASH}; | 62 CRASH}; |
| 62 | 63 |
| 63 [inline_doc] dictionary DownloadOptions { | 64 [inline_doc] dictionary DownloadOptions { |
| 64 // The URL to download. | 65 // The URL to download. |
| (...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 536 // <code>suggestion</code> object to <code>suggest</code> wins. In order to | 537 // <code>suggestion</code> object to <code>suggest</code> wins. In order to |
| 537 // avoid confusion regarding which extension will win, users should not | 538 // avoid confusion regarding which extension will win, users should not |
| 538 // install extensions that may conflict. If the download is initiated by | 539 // install extensions that may conflict. If the download is initiated by |
| 539 // $ref:download and the target filename is known before the MIME type and | 540 // $ref:download and the target filename is known before the MIME type and |
| 540 // tentative filename have been determined, pass <code>filename</code> to | 541 // tentative filename have been determined, pass <code>filename</code> to |
| 541 // $ref:download instead. | 542 // $ref:download instead. |
| 542 [maxListeners=1] static void onDeterminingFilename( | 543 [maxListeners=1] static void onDeterminingFilename( |
| 543 DownloadItem downloadItem, SuggestFilenameCallback suggest); | 544 DownloadItem downloadItem, SuggestFilenameCallback suggest); |
| 544 }; | 545 }; |
| 545 }; | 546 }; |
| OLD | NEW |