Chromium Code Reviews| Index: chrome/browser/resources/downloads/item.js |
| diff --git a/chrome/browser/resources/downloads/item.js b/chrome/browser/resources/downloads/item.js |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..cfdd392a4fc852b4e26c0a084341e2f21be644e5 |
| --- /dev/null |
| +++ b/chrome/browser/resources/downloads/item.js |
| @@ -0,0 +1,56 @@ |
| +// Copyright 2014 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +cr.define('downloads', function() { |
| + /** @constructor */ |
| + function Item() {} |
| + |
| + /** |
| + * The states a download can be in. These correspond to states defined in |
| + * DownloadsDOMHandler::CreateDownloadItemValue |
| + * @enum {string} |
| + */ |
| + Item.States = { |
| + IN_PROGRESS: 'IN_PROGRESS', |
| + CANCELLED: 'CANCELLED', |
| + COMPLETE: 'COMPLETE', |
| + PAUSED: 'PAUSED', |
| + DANGEROUS: 'DANGEROUS', |
| + INTERRUPTED: 'INTERRUPTED', |
| + }; |
| + |
| + /** |
| + * Explains why a download is in DANGEROUS state. |
| + * @enum {string} |
| + */ |
| + Item.DangerType = { |
| + NOT_DANGEROUS: 'NOT_DANGEROUS', |
| + DANGEROUS_FILE: 'DANGEROUS_FILE', |
| + DANGEROUS_URL: 'DANGEROUS_URL', |
| + DANGEROUS_CONTENT: 'DANGEROUS_CONTENT', |
| + UNCOMMON_CONTENT: 'UNCOMMON_CONTENT', |
| + DANGEROUS_HOST: 'DANGEROUS_HOST', |
| + POTENTIALLY_UNWANTED: 'POTENTIALLY_UNWANTED', |
| + }; |
| + |
| + Item.prototype = { |
| + /** |
| + * @param {!downloads.Data} data Info about the download. |
| + */ |
| + render: function(data) { |
| + /** @private {!downloads.ItemView} */ |
| + this.view = this.view || new downloads.ItemView; |
| + this.view.update(data); |
| + }, |
| + |
| + unrender: function() { |
| + if (this.view) { |
| + this.view.destroy(); |
| + delete this.view; |
|
asanka
2015/03/10 04:15:51
seems 'this.view = null' is preferred?
Dan Beam
2015/03/10 05:41:02
eh, i've seen things that talk about delete not be
asanka
2015/03/11 19:57:49
Cool. I'm no expert on this, and I'm okay with eit
|
| + } |
| + }, |
| + }; |
| + |
| + return {Item: Item}; |
| +}); |