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

Unified Diff: chrome/browser/sync/notifier/gaia_auth/gaiahelper.cc

Issue 225001: Use base/logging from chrome/browser/sync. Add a macro to libjingle's (Closed)
Patch Set: Added README.chromium Created 11 years, 3 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: chrome/browser/sync/notifier/gaia_auth/gaiahelper.cc
diff --git a/chrome/browser/sync/notifier/gaia_auth/gaiahelper.cc b/chrome/browser/sync/notifier/gaia_auth/gaiahelper.cc
index 95ca02323b950bc26f3e8a6752cd1546ccbb857c..f16280efcaefd0fd7b4b3ceb341a0e37461f55cb 100644
--- a/chrome/browser/sync/notifier/gaia_auth/gaiahelper.cc
+++ b/chrome/browser/sync/notifier/gaia_auth/gaiahelper.cc
@@ -3,6 +3,7 @@
// found in the LICENSE file.
#include "chrome/browser/sync/notifier/gaia_auth/gaiahelper.h"
+#include "base/logging.h"
#include "talk/base/common.h"
#include "talk/base/cryptstring.h"
#include "talk/base/httpclient.h"
@@ -147,9 +148,9 @@ GaiaResponse GaiaParseSidResponse(const talk_base::HttpClient& client,
response.assign(stream->GetBuffer(), length);
}
- LOG(LS_INFO) << "GaiaAuth request to " << client.request().path;
- LOG(LS_INFO) << "GaiaAuth Status Code: " << status_code;
- LOG(LS_INFO) << response;
+ LOG(INFO) << "GaiaAuth request to " << client.request().path;
+ LOG(INFO) << "GaiaAuth Status Code: " << status_code;
+ LOG(INFO) << response;
if (status_code == talk_base::HC_FORBIDDEN) {
// The error URL may be the relative path to the captcha jpg.

Powered by Google App Engine
This is Rietveld 408576698