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

Unified Diff: chrome/browser/extensions/extension_downloads_api_constants.cc

Issue 8203005: Implement chrome.experimental.downloads.onChanged (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: on_changed_stats_,OnChangedStat Created 9 years, 2 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
Index: chrome/browser/extensions/extension_downloads_api_constants.cc
diff --git a/chrome/browser/extensions/extension_downloads_api_constants.cc b/chrome/browser/extensions/extension_downloads_api_constants.cc
index 4a0db5307bb1329e215eadb19fd9e19c58c3d87c..61a779206c3dd6392ad42645dd43b9b89b50656b 100644
--- a/chrome/browser/extensions/extension_downloads_api_constants.cc
+++ b/chrome/browser/extensions/extension_downloads_api_constants.cc
@@ -58,7 +58,7 @@ const char* StateString(DownloadItem::DownloadState state) {
case DownloadItem::CANCELLED: return kStateInterrupted;
case DownloadItem::REMOVING: // fall through
default:
- NOTREACHED();
+ NOTREACHED() << state;
return "";
}
}

Powered by Google App Engine
This is Rietveld 408576698