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

Unified Diff: chrome/browser/resources/downloads/item.js

Issue 977473002: downloads: break downloads.js into more classes/files. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: thestig@ review Created 5 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/resources/downloads/focus_row.js ('k') | chrome/browser/resources/downloads/item_view.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..348be58a8af28178c5e81299539e6e29dc378d54
--- /dev/null
+++ b/chrome/browser/resources/downloads/item.js
@@ -0,0 +1,58 @@
+// Copyright 2015 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 = {
+ /** @type {downloads.ItemView} */
+ view: null,
+
+ /**
+ * @param {!downloads.Data} data Info about the download.
+ */
+ render: function(data) {
+ this.view = this.view || new downloads.ItemView;
+ this.view.update(data);
+ },
+
+ unrender: function() {
+ if (this.view) {
+ this.view.destroy();
+ this.view = null;
+ }
+ },
+ };
+
+ return {Item: Item};
+});
« no previous file with comments | « chrome/browser/resources/downloads/focus_row.js ('k') | chrome/browser/resources/downloads/item_view.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698