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

Unified Diff: components/password_manager/core/browser/password_generation_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
« no previous file with comments | « components/autofill/core/browser/autofill_download_manager.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/password_manager/core/browser/password_generation_manager.cc
diff --git a/components/password_manager/core/browser/password_generation_manager.cc b/components/password_manager/core/browser/password_generation_manager.cc
index a15af5cfa8a410c409439251423bbfc63a59a769..8eab3bb90b3977d629a8fde22dd2b80b7a711639 100644
--- a/components/password_manager/core/browser/password_generation_manager.cc
+++ b/components/password_manager/core/browser/password_generation_manager.cc
@@ -49,14 +49,14 @@ void PasswordGenerationManager::DetectAccountCreationForms(
// (2) Password saving is enabled.
bool PasswordGenerationManager::IsGenerationEnabled() const {
if (!driver_->GetPasswordManager()->IsSavingEnabledForCurrentPage()) {
- DVLOG(2) << "Generation disabled because password saving is disabled";
+ VLOG(2) << "Generation disabled because password saving is disabled";
return false;
}
// Don't consider sync enabled if the user has a custom passphrase. See
// crbug.com/358998 for more details.
if (!client_->IsPasswordSyncEnabled(WITHOUT_CUSTOM_PASSPHRASE)) {
- DVLOG(2) << "Generation disabled because passwords are not being synced or"
+ VLOG(2) << "Generation disabled because passwords are not being synced or"
<< " custom passphrase is used.";
return false;
}
« no previous file with comments | « components/autofill/core/browser/autofill_download_manager.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698