OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/common/net/gaia/gaia_urls.h" | 5 #include "google_apis/gaia/gaia_urls.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "chrome/common/net/gaia/gaia_switches.h" | 8 #include "google_apis/gaia/gaia_switches.h" |
9 #include "chrome/common/net/google_apis/google_api_keys.h" | 9 #include "google_apis/google_api_keys.h" |
10 | 10 |
11 namespace { | 11 namespace { |
12 | 12 |
13 // Gaia service constants | 13 // Gaia service constants |
14 const char kDefaultGaiaBaseUrl[] = "accounts.google.com"; | 14 const char kDefaultGaiaBaseUrl[] = "accounts.google.com"; |
15 | 15 |
16 // Gaia service constants | 16 // Gaia service constants |
17 const char kDefaultGaiaOAuthBaseUrl[] = "www.google.com"; | 17 const char kDefaultGaiaOAuthBaseUrl[] = "www.google.com"; |
18 | 18 |
19 const char kCaptchaUrlPrefixSuffix[] = "/"; | 19 const char kCaptchaUrlPrefixSuffix[] = "/"; |
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
233 } | 233 } |
234 | 234 |
235 const std::string& GaiaUrls::oauth2_issue_token_url() { | 235 const std::string& GaiaUrls::oauth2_issue_token_url() { |
236 return oauth2_issue_token_url_; | 236 return oauth2_issue_token_url_; |
237 } | 237 } |
238 | 238 |
239 | 239 |
240 const std::string& GaiaUrls::gaia_login_form_realm() { | 240 const std::string& GaiaUrls::gaia_login_form_realm() { |
241 return gaia_login_form_realm_; | 241 return gaia_login_form_realm_; |
242 } | 242 } |
OLD | NEW |