| Index: chrome/browser/ui/webui/md_downloads/downloads_list_tracker.cc
|
| diff --git a/chrome/browser/ui/webui/md_downloads/downloads_list_tracker.cc b/chrome/browser/ui/webui/md_downloads/downloads_list_tracker.cc
|
| index e2dd721e7ada64593240403c734d6a0fd4a68ec0..5ba1d0a11af334f2f36216ad23ea09e11123bf66 100644
|
| --- a/chrome/browser/ui/webui/md_downloads/downloads_list_tracker.cc
|
| +++ b/chrome/browser/ui/webui/md_downloads/downloads_list_tracker.cc
|
| @@ -279,7 +279,11 @@ DownloadsListTracker::CreateDownloadItemValue(
|
| if (download_item->CanResume())
|
| percent = download_item->PercentComplete();
|
|
|
| - last_reason_text = download_model.GetInterruptReasonText();
|
| + // TODO(asanka): last_reason_text should be set via
|
| + // download_model.GetInterruptReasonText(). But we are using
|
| + // GetStatusText() as a temporary measure until the layout is fixed to
|
| + // accommodate the longer string. http://crbug.com/609255
|
| + last_reason_text = download_model.GetStatusText();
|
| if (content::DOWNLOAD_INTERRUPT_REASON_CRASH ==
|
| download_item->GetLastReason() && !download_item->CanResume()) {
|
| retry = true;
|
|
|