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

Unified Diff: chrome/browser/automation/automation_provider.cc

Issue 10704026: Reland DownloadItem::Observer::OnDownloadDestroyed() replaces DownloadItem::REMOVING (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge Created 8 years, 5 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/automation/automation_provider.cc
diff --git a/chrome/browser/automation/automation_provider.cc b/chrome/browser/automation/automation_provider.cc
index f4d6d70139eb90d1cd399c5779ab26b1255bd4f9..21c9de243a67efbe1f5f81084cb4c656e4dadbdf 100644
--- a/chrome/browser/automation/automation_provider.cc
+++ b/chrome/browser/automation/automation_provider.cc
@@ -304,7 +304,6 @@ DictionaryValue* AutomationProvider::GetDictionaryFromDownloadItem(
std::map<DownloadItem::DownloadState, std::string> state_to_string;
state_to_string[DownloadItem::IN_PROGRESS] = std::string("IN_PROGRESS");
state_to_string[DownloadItem::CANCELLED] = std::string("CANCELLED");
- state_to_string[DownloadItem::REMOVING] = std::string("REMOVING");
Randy Smith (Not in Mondays) 2012/07/11 17:55:37 Can you say a word or two about why you don't thin
benjhayden 2012/07/13 20:03:17 grep -i REMOVING $(find . -iname '*.py'|grep downl
Randy Smith (Not in Mondays) 2012/07/14 19:25:53 And you're comfortable that the pyauto tests are t
benjhayden 2012/07/23 15:43:09 ui_unittests and interactive_ui_tests pass on all
state_to_string[DownloadItem::INTERRUPTED] = std::string("INTERRUPTED");
state_to_string[DownloadItem::COMPLETE] = std::string("COMPLETE");

Powered by Google App Engine
This is Rietveld 408576698