| Index: chrome/common/net/gaia/gaia_urls.cc
|
| ===================================================================
|
| --- chrome/common/net/gaia/gaia_urls.cc (revision 124237)
|
| +++ chrome/common/net/gaia/gaia_urls.cc (working copy)
|
| @@ -38,6 +38,8 @@
|
| "https://accounts.google.com/o/oauth2/programmatic_auth";
|
| const char kOAuth2TokenUrl[] =
|
| "https://accounts.google.com/o/oauth2/token";
|
| +const char kOAuth2IssueTokenUrl[] =
|
| + "https://www.googleapis.com/oauth2/v2/IssueToken";
|
| } // namespacce
|
|
|
| GaiaUrls* GaiaUrls::GetInstance() {
|
| @@ -80,6 +82,7 @@
|
| oauth2_chrome_client_secret_ = kOAuth2ChromeClientSecret;
|
| client_login_to_oauth2_url_ = kClientLoginToOAuth2Url;
|
| oauth2_token_url_ = kOAuth2TokenUrl;
|
| + oauth2_issue_token_url_ = kOAuth2IssueTokenUrl;
|
| }
|
|
|
| GaiaUrls::~GaiaUrls() {
|
| @@ -160,3 +163,7 @@
|
| const std::string& GaiaUrls::oauth2_token_url() {
|
| return oauth2_token_url_;
|
| }
|
| +
|
| +const std::string& GaiaUrls::oauth2_issue_token_url() {
|
| + return oauth2_issue_token_url_;
|
| +}
|
|
|