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

Unified Diff: chrome/browser/ssl/ssl_client_auth_observer.cc

Issue 688993004: [chrome/browser/s*] Convert VLOGs to DVLOGs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebasing the patch and removing supervised_users related change Created 6 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 | « chrome/browser/signin/easy_unlock_service_signin_chromeos.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ssl/ssl_client_auth_observer.cc
diff --git a/chrome/browser/ssl/ssl_client_auth_observer.cc b/chrome/browser/ssl/ssl_client_auth_observer.cc
index 52e1aa6a933f6e73f08172eea8f36ae90e136665..edc63bbf78cd948984935b3bb2ea5672e531ba7c 100644
--- a/chrome/browser/ssl/ssl_client_auth_observer.cc
+++ b/chrome/browser/ssl/ssl_client_auth_observer.cc
@@ -55,7 +55,7 @@ void SSLClientAuthObserver::Observe(
int type,
const content::NotificationSource& source,
const content::NotificationDetails& details) {
- VLOG(1) << "SSLClientAuthObserver::Observe " << this;
+ DVLOG(1) << "SSLClientAuthObserver::Observe " << this;
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK(type == chrome::NOTIFICATION_SSL_CLIENT_AUTH_CERT_SELECTED);
@@ -64,8 +64,8 @@ void SSLClientAuthObserver::Observe(
cert_request_info_->host_and_port))
return;
- VLOG(1) << this << " got matching notification and selecting cert "
- << cert_details->second;
+ DVLOG(1) << this << " got matching notification and selecting cert "
+ << cert_details->second;
StopObserving();
callback_.Run(cert_details->second);
callback_.Reset();
« no previous file with comments | « chrome/browser/signin/easy_unlock_service_signin_chromeos.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698