Chromium Code Reviews| Index: google_apis/gaia/gaia_urls.cc |
| diff --git a/google_apis/gaia/gaia_urls.cc b/google_apis/gaia/gaia_urls.cc |
| index a910d4d8ef9a06b29cb90440b40524f93eeccd0d..4cb49fb48cec73fbb261778eaec6eb172a1ff7ab 100644 |
| --- a/google_apis/gaia/gaia_urls.cc |
| +++ b/google_apis/gaia/gaia_urls.cc |
| @@ -11,7 +11,7 @@ |
| namespace { |
| // Gaia service constants |
| -const char kDefaultGaiaBaseUrl[] = "accounts.google.com"; |
| +const char kDefaultGaiaBaseUrl[] = "localhost:8040"; |
|
Nikita (slow)
2013/04/05 18:00:51
Test change, you need to support configuring this
|
| const char kDefaultGoogleApisBaseUrl[] = "www.googleapis.com"; |
| const char kCaptchaUrlPrefixSuffix[] = "/"; |
| @@ -74,7 +74,7 @@ GaiaUrls::GaiaUrls() { |
| &google_apis_base); |
| captcha_url_prefix_ = "http://" + host_base + kCaptchaUrlPrefixSuffix; |
| - gaia_origin_url_ = "https://" + host_base; |
| + gaia_origin_url_ = "http://" + host_base; |
|
Nikita (slow)
2013/04/05 18:00:51
Same here.
|
| lso_origin_url_ = "https://" + lso_base; |
| google_apis_origin_url_ = "https://" + google_apis_base; |
| std::string gaia_url_base = gaia_origin_url_; |