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

Unified Diff: components/autofill/core/browser/autofill_download_manager.cc

Issue 897633004: [Password Generation] Logging for release builds (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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: components/autofill/core/browser/autofill_download_manager.cc
diff --git a/components/autofill/core/browser/autofill_download_manager.cc b/components/autofill/core/browser/autofill_download_manager.cc
index 93312826713eb504489eebb07ad75a9456ae8537..afe5679e49ddbdc2b2fcbd86a0f5a76a08f821d7 100644
--- a/components/autofill/core/browser/autofill_download_manager.cc
+++ b/components/autofill/core/browser/autofill_download_manager.cc
@@ -98,7 +98,7 @@ bool AutofillDownloadManager::StartQueryRequest(
std::string query_data;
if (CheckCacheForQueryRequest(request_data.form_signatures, &query_data)) {
- DVLOG(1) << "AutofillDownloadManager: query request has been retrieved "
+ VLOG(1) << "AutofillDownloadManager: query request has been retrieved "
<< "from the cache, form signatures: "
<< GetCombinedSignature(request_data.form_signatures);
observer_->OnLoadedServerPredictions(query_data);
@@ -119,7 +119,7 @@ bool AutofillDownloadManager::StartUploadRequest(
if (next_upload_request_ > base::Time::Now()) {
// We are in back-off mode: do not do the request.
- DVLOG(1) << "AutofillDownloadManager: Upload request is throttled.";
+ VLOG(1) << "AutofillDownloadManager: Upload request is throttled.";
return false;
}
@@ -129,7 +129,7 @@ bool AutofillDownloadManager::StartUploadRequest(
if (form.upload_required() == UPLOAD_NOT_REQUIRED ||
(form.upload_required() == USE_UPLOAD_RATES &&
base::RandDouble() > upload_rate)) {
- DVLOG(1) << "AutofillDownloadManager: Upload request is ignored.";
+ VLOG(1) << "AutofillDownloadManager: Upload request is ignored.";
// If we ever need notification that upload was skipped, add it here.
return false;
}
@@ -188,7 +188,7 @@ bool AutofillDownloadManager::StartRequest(
net::LOAD_DO_NOT_SEND_COOKIES);
fetcher->Start();
- DVLOG(1) << "Sending AutofillDownloadManager "
+ VLOG(1) << "Sending AutofillDownloadManager "
<< RequestTypeToString(request_data.request_type)
<< " request: " << form_xml;
@@ -293,7 +293,7 @@ void AutofillDownloadManager::OnURLFetchComplete(
}
}
- DVLOG(1) << "AutofillDownloadManager: " << request_type
+ VLOG(1) << "AutofillDownloadManager: " << request_type
<< " request has failed with response "
<< source->GetResponseCode();
observer_->OnServerRequestError(it->second.form_signatures[0],
@@ -302,7 +302,7 @@ void AutofillDownloadManager::OnURLFetchComplete(
} else {
std::string response_body;
source->GetResponseAsString(&response_body);
- DVLOG(1) << "AutofillDownloadManager: " << request_type
+ VLOG(1) << "AutofillDownloadManager: " << request_type
<< " request has succeeded with response body: " << response_body;
if (it->second.request_type == AutofillDownloadManager::REQUEST_QUERY) {
CacheQueryRequest(it->second.form_signatures, response_body);

Powered by Google App Engine
This is Rietveld 408576698