Index: chrome/browser/resources/downloads/downloads.js |
diff --git a/chrome/browser/resources/downloads/downloads.js b/chrome/browser/resources/downloads/downloads.js |
index e5f23f10d6ae66cf0ef1a4535b508582fac276f2..1025a051edd417f618ef31b4e1a591b4522670ba 100644 |
--- a/chrome/browser/resources/downloads/downloads.js |
+++ b/chrome/browser/resources/downloads/downloads.js |
@@ -490,9 +490,12 @@ Download.prototype.update = function(download) { |
showInline(this.controlRetry_, this.state_ == Download.States.CANCELLED); |
this.controlRetry_.href = this.url_; |
showInline(this.controlPause_, this.state_ == Download.States.IN_PROGRESS); |
- showInline(this.controlResume_, this.state_ == Download.States.PAUSED); |
+ showInline(this.controlResume_, |
+ this.state_ == Download.States.PAUSED || |
+ this.state_ == Download.States.INTERRUPTED); |
var showCancel = this.state_ == Download.States.IN_PROGRESS || |
- this.state_ == Download.States.PAUSED; |
+ this.state_ == Download.States.PAUSED || |
+ this.state_ == Download.States.INTERRUPTED; |
showInline(this.controlCancel_, showCancel); |
showInline(this.controlRemove_, !showCancel); |