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

Unified Diff: chrome/browser/dom_ui/downloads_dom_handler.cc

Issue 274040: More style nits. (Closed)
Patch Set: Created 11 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/dom_ui/downloads_dom_handler.cc
diff --git a/chrome/browser/dom_ui/downloads_dom_handler.cc b/chrome/browser/dom_ui/downloads_dom_handler.cc
index 33ea691ef543baf3b28e538f0c4122c5330c1f56..bdaddd726ffc25b40d5aadb8975a384e31bce319 100644
--- a/chrome/browser/dom_ui/downloads_dom_handler.cc
+++ b/chrome/browser/dom_ui/downloads_dom_handler.cc
@@ -223,7 +223,7 @@ void DownloadsDOMHandler::SendCurrentDownloads() {
int index = static_cast<int>(it - download_items_.begin());
if (index > kMaxDownloads)
break;
- results_value.Append(CreateDownloadItemValue(*it,index));
+ results_value.Append(CreateDownloadItemValue(*it, index));
}
dom_ui_->CallJavascriptFunction(L"downloadsList", results_value);

Powered by Google App Engine
This is Rietveld 408576698