summaryrefslogtreecommitdiffstats
path: root/chrome/browser/browser_signin.cc
diff options
context:
space:
mode:
authorpkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-27 01:09:16 +0000
committerpkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-27 01:09:16 +0000
commit5044da885d4baa782f5ff150951cda6c7ac31af9 (patch)
treed11ad06a35203dba73701f747a68f5bc8fcd1b53 /chrome/browser/browser_signin.cc
parenta77e4b19a4055f6aac6e71fa5ed8a9fea20e7aca (diff)
downloadchromium_src-5044da885d4baa782f5ff150951cda6c7ac31af9.zip
chromium_src-5044da885d4baa782f5ff150951cda6c7ac31af9.tar.gz
chromium_src-5044da885d4baa782f5ff150951cda6c7ac31af9.tar.bz2
Change miscellaneous LOG(INFO)s to VLOG()s that I missed the first time through, either because they were LOG_IF() (which I didn't search for) or they were added during the week I was changing things.
Plus a few misc. cleanup bits. BUG=none TEST=none Review URL: http://codereview.chromium.org/4111002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@63998 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browser_signin.cc')
-rw-r--r--chrome/browser/browser_signin.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/browser_signin.cc b/chrome/browser/browser_signin.cc
index bff69ce..0252a4f 100644
--- a/chrome/browser/browser_signin.cc
+++ b/chrome/browser/browser_signin.cc
@@ -229,7 +229,7 @@ void BrowserSignin::RequestSignin(TabContents* tab_contents,
std::string BrowserSignin::GetSignedInUsername() const {
std::string username =
profile_->GetPrefs()->GetString(prefs::kGoogleServicesUsername);
- LOG(INFO) << "GetSignedInUsername: " << username;
+ VLOG(1) << "GetSignedInUsername: " << username;
return username;
}
@@ -238,7 +238,7 @@ void BrowserSignin::Observe(NotificationType type,
const NotificationDetails& details) {
switch (type.value) {
case NotificationType::GOOGLE_SIGNIN_SUCCESSFUL: {
- LOG(INFO) << "GOOGLE_SIGNIN_SUCCESSFUL";
+ VLOG(1) << "GOOGLE_SIGNIN_SUCCESSFUL";
if (delegate_)
delegate_->OnLoginSuccess();
// Close the dialog.
@@ -246,7 +246,7 @@ void BrowserSignin::Observe(NotificationType type,
break;
}
case NotificationType::GOOGLE_SIGNIN_FAILED: {
- LOG(INFO) << "GOOGLE_SIGNIN_FAILED";
+ VLOG(1) << "GOOGLE_SIGNIN_FAILED";
// The signin failed, refresh the UI with error information.
html_dialog_ui_delegate_->ReloadUI();
break;