diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-01 01:01:52 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-01 01:01:52 +0000 |
commit | f5c722b9e89c91e0844afeb29d841f02ed5c472f (patch) | |
tree | dc4cf7bf3f2e53391b737eaa1f1b8b2d27846f8f /chrome/browser/autofill/autofill_download.cc | |
parent | 52eed12eccb82f5402aaf044c49ce101d02fce6c (diff) | |
download | chromium_src-f5c722b9e89c91e0844afeb29d841f02ed5c472f.zip chromium_src-f5c722b9e89c91e0844afeb29d841f02ed5c472f.tar.gz chromium_src-f5c722b9e89c91e0844afeb29d841f02ed5c472f.tar.bz2 |
autofill: Rename AutoFillMetrics to AutofillMetrics.
BUG=72758
TEST=compiled locally and trybots
Review URL: http://codereview.chromium.org/6602001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@76330 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/autofill/autofill_download.cc')
-rw-r--r-- | chrome/browser/autofill/autofill_download.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/autofill/autofill_download.cc b/chrome/browser/autofill/autofill_download.cc index 7a6dfaa..d4cb32a 100644 --- a/chrome/browser/autofill/autofill_download.cc +++ b/chrome/browser/autofill/autofill_download.cc @@ -68,7 +68,7 @@ void AutofillDownloadManager::SetObserver( bool AutofillDownloadManager::StartQueryRequest( const ScopedVector<FormStructure>& forms, - const AutoFillMetrics& metric_logger) { + const AutofillMetrics& metric_logger) { if (next_query_request_ > base::Time::Now()) { // We are in back-off mode: do not do the request. return false; @@ -81,7 +81,7 @@ bool AutofillDownloadManager::StartQueryRequest( } request_data.request_type = AutofillDownloadManager::REQUEST_QUERY; - metric_logger.Log(AutoFillMetrics::QUERY_SENT); + metric_logger.Log(AutofillMetrics::QUERY_SENT); std::string query_data; if (CheckCacheForQueryRequest(request_data.form_signatures, &query_data)) { |