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

Unified Diff: chrome/browser/net/gaia/token_service.cc

Issue 7497069: Support Sync following Gaia OAuth authentication (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Final review comments Created 9 years, 4 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 | « chrome/browser/about_flags.cc ('k') | chrome/browser/sync/engine/net/syncapi_server_connection_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/net/gaia/token_service.cc
diff --git a/chrome/browser/net/gaia/token_service.cc b/chrome/browser/net/gaia/token_service.cc
index a272aea2f264cd77346b3280f032acc43d443a66..1448ad26f56d510895040957b3739e9eeda2c83e 100644
--- a/chrome/browser/net/gaia/token_service.cc
+++ b/chrome/browser/net/gaia/token_service.cc
@@ -330,7 +330,7 @@ void TokenService::LoadTokensIntoMemory(
db_tokens.count(kServices[i])) {
std::string db_token = db_tokens.find(kServices[i])->second;
if (!db_token.empty()) {
- VLOG(1) << "Loading " << kServices[i] << "token from DB: " << db_token;
+ VLOG(1) << "Loading " << kServices[i] << " token from DB: " << db_token;
(*in_memory_tokens)[kServices[i]] = db_token;
FireTokenAvailableNotification(kServices[i], db_token);
// Failures are only for network errors.
@@ -371,7 +371,7 @@ void TokenService::LoadTokensIntoMemory(
db_tokens.count(kOAuthServices[i])) {
std::string db_token = db_tokens.find(kOAuthServices[i])->second;
if (!db_token.empty()) {
- VLOG(1) << "Loading " << kOAuthServices[i] << "token from DB: "
+ VLOG(1) << "Loading " << kOAuthServices[i] << " OAuth token from DB: "
<< db_token;
(*in_memory_tokens)[kOAuthServices[i]] = db_token;
FireTokenAvailableNotification(kOAuthServices[i], db_token);
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | chrome/browser/sync/engine/net/syncapi_server_connection_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698