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

Unified Diff: chrome/common/net/gaia/gaia_urls.cc

Issue 7600003: Pre- and Auto-login should not log the user out of an already signed in (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Add test source code file to CL 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
Index: chrome/common/net/gaia/gaia_urls.cc
===================================================================
--- chrome/common/net/gaia/gaia_urls.cc (revision 96549)
+++ chrome/common/net/gaia/gaia_urls.cc (working copy)
@@ -15,6 +15,7 @@
const char kIssueAuthTokenUrlSuffix[] = "/accounts/IssueAuthToken";
const char kGetUserInfoUrlSuffix[] = "/accounts/GetUserInfo";
const char kTokenAuthUrlSuffix[] = "/accounts/TokenAuth";
+const char kMergeSessionUrlSuffix[] = "/accounts/MergeSession";
} // namespacce
@@ -35,6 +36,7 @@
issue_auth_token_url_ = "https://" + host_base_ + kIssueAuthTokenUrlSuffix;
get_user_info_url_ = "https://" + host_base_ + kGetUserInfoUrlSuffix;
token_auth_url_ = "https://" + host_base_ + kTokenAuthUrlSuffix;
+ merge_session_url_ = "https://" + host_base_ + kMergeSessionUrlSuffix;
}
GaiaUrls::~GaiaUrls() {
@@ -59,3 +61,7 @@
const std::string& GaiaUrls::token_auth_url() {
return token_auth_url_;
}
+
+const std::string& GaiaUrls::merge_session_url() {
+ return merge_session_url_;
+}

Powered by Google App Engine
This is Rietveld 408576698