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

Side by Side Diff: chrome/browser/resources/md_downloads/externs.js

Issue 1710083005: Remove old downloads UI; Material Design version is now the default. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove testing/ Created 4 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
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 /** 5 /**
6 * @fileoverview Externs for objects sent from C++ to JS for chrome://downloads. 6 * @fileoverview Externs for objects sent from C++ to JS for chrome://downloads.
7 * @externs 7 * @externs
8 */ 8 */
9 9
10 var downloads = {}; 10 var downloads = {};
11 11
12 /** 12 /**
13 * The type of the download object. The definition is based on 13 * The type of the download object. The definition is based on
14 * chrome/browser/ui/webui/downloads_dom_handler.cc:CreateDownloadItemValue() 14 * MdDownloadsDOMHandler::CreateDownloadItemValue()
15 * @typedef {{by_ext_id: string, 15 * @typedef {{by_ext_id: string,
16 * by_ext_name: string, 16 * by_ext_name: string,
17 * danger_type: string, 17 * danger_type: string,
18 * date_string: string, 18 * date_string: string,
19 * file_externally_removed: boolean, 19 * file_externally_removed: boolean,
20 * file_name: string, 20 * file_name: string,
21 * file_path: string, 21 * file_path: string,
22 * file_url: string, 22 * file_url: string,
23 * id: string, 23 * id: string,
24 * last_reason_text: string, 24 * last_reason_text: string,
25 * otr: boolean, 25 * otr: boolean,
26 * percent: number, 26 * percent: number,
27 * progress_status_text: string, 27 * progress_status_text: string,
28 * resume: boolean, 28 * resume: boolean,
29 * retry: boolean, 29 * retry: boolean,
30 * since_string: string, 30 * since_string: string,
31 * started: number, 31 * started: number,
32 * state: string, 32 * state: string,
33 * total: number, 33 * total: number,
34 * url: string}} 34 * url: string}}
35 */ 35 */
36 downloads.Data; 36 downloads.Data;
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_downloads/compiled_resources2.gyp ('k') | chrome/browser/ui/browser_navigator_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698