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

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

Issue 1444253003: Use If-Range instead of If-Match/If-Unmodified-Since for partial requests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Make it obvious that the interrupt reason is obsolete. Created 5 years 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
OLDNEW
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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 NETWORK_INVALID_REQUEST,
56 SERVER_FAILED, 56 SERVER_FAILED,
57 SERVER_NO_RANGE, 57 SERVER_NO_RANGE,
58 SERVER_PRECONDITION,
Devlin 2015/12/02 17:18:27 Unfortunately, we expose these enums on the api ob
asanka 2015/12/02 17:23:52 Yup. See comment #12 (relevant portion pasted belo
59 SERVER_BAD_CONTENT, 58 SERVER_BAD_CONTENT,
60 SERVER_UNAUTHORIZED, 59 SERVER_UNAUTHORIZED,
61 SERVER_CERT_PROBLEM, 60 SERVER_CERT_PROBLEM,
62 SERVER_FORBIDDEN, 61 SERVER_FORBIDDEN,
63 USER_CANCELED, 62 USER_CANCELED,
64 USER_SHUTDOWN, 63 USER_SHUTDOWN,
65 CRASH}; 64 CRASH};
66 65
67 [inline_doc] dictionary DownloadOptions { 66 [inline_doc] dictionary DownloadOptions {
68 // The URL to download. 67 // The URL to download.
(...skipping 474 matching lines...) Expand 10 before | Expand all | Expand 10 after
543 // <code>suggestion</code> object to <code>suggest</code> wins. In order to 542 // <code>suggestion</code> object to <code>suggest</code> wins. In order to
544 // avoid confusion regarding which extension will win, users should not 543 // avoid confusion regarding which extension will win, users should not
545 // install extensions that may conflict. If the download is initiated by 544 // install extensions that may conflict. If the download is initiated by
546 // $(ref:download) and the target filename is known before the MIME type and 545 // $(ref:download) and the target filename is known before the MIME type and
547 // tentative filename have been determined, pass <code>filename</code> to 546 // tentative filename have been determined, pass <code>filename</code> to
548 // $(ref:download) instead. 547 // $(ref:download) instead.
549 [maxListeners=1] static void onDeterminingFilename( 548 [maxListeners=1] static void onDeterminingFilename(
550 DownloadItem downloadItem, SuggestFilenameCallback suggest); 549 DownloadItem downloadItem, SuggestFilenameCallback suggest);
551 }; 550 };
552 }; 551 };
OLDNEW
« no previous file with comments | « chrome/browser/download/download_item_model_unittest.cc ('k') | content/browser/download/download_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698