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

Unified Diff: chrome/browser/autofill/autofill_download.cc

Issue 4999003: Fix a small typo in AutoFillDownloadManager::OnURLFetchComplete.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 1 month 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/autofill/autofill_download.cc
===================================================================
--- chrome/browser/autofill/autofill_download.cc (revision 66244)
+++ chrome/browser/autofill/autofill_download.cc (working copy)
@@ -5,6 +5,7 @@
#include "chrome/browser/autofill/autofill_download.h"
#include <algorithm>
+#include <vector>
#include "base/logging.h"
#include "base/rand_util.h"
@@ -235,7 +236,7 @@
}
LOG(WARNING) << "AutoFillDownloadManager: " << type_of_request
- << " request has failed with response" << response_code;
+ << " request has failed with response " << response_code;
if (observer_) {
observer_->OnHeuristicsRequestError(it->second.form_signatures[0],
it->second.request_type,
@@ -266,4 +267,3 @@
delete it->first;
url_fetchers_.erase(it);
}
-
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698