| 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 #ifndef GOOGLE_APIS_GAIA_GAIA_SWITCHES_H_ | 5 #ifndef GOOGLE_APIS_GAIA_GAIA_SWITCHES_H_ |
| 6 #define GOOGLE_APIS_GAIA_GAIA_SWITCHES_H_ | 6 #define GOOGLE_APIS_GAIA_GAIA_SWITCHES_H_ |
| 7 | 7 |
| 8 namespace switches { | 8 namespace switches { |
| 9 | 9 |
| 10 // Specifies the domain of the APISID cookie. The default value is |
| 11 // "http://.google.com". |
| 12 extern const char kGoogleUrl[]; |
| 13 |
| 10 // Specifies the path for GAIA authentication URL. The default value is | 14 // Specifies the path for GAIA authentication URL. The default value is |
| 11 // "https://accounts.google.com". | 15 // "https://accounts.google.com". |
| 12 extern const char kGaiaUrl[]; | 16 extern const char kGaiaUrl[]; |
| 13 | 17 |
| 14 // Specifies the backend server used for Google API calls. | 18 // Specifies the backend server used for Google API calls. |
| 15 // The default value is "https://www.googleapis.com". | 19 // The default value is "https://www.googleapis.com". |
| 16 extern const char kGoogleApisUrl[]; | 20 extern const char kGoogleApisUrl[]; |
| 17 | 21 |
| 18 // Specifies the backend server used for lso authentication calls. | 22 // Specifies the backend server used for lso authentication calls. |
| 19 // "https://accounts.google.com". | 23 // "https://accounts.google.com". |
| 20 extern const char kLsoUrl[]; | 24 extern const char kLsoUrl[]; |
| 21 | 25 |
| 22 // Specifies custom OAuth2 client id for testing purposes. | 26 // Specifies custom OAuth2 client id for testing purposes. |
| 23 extern const char kOAuth2ClientID[]; | 27 extern const char kOAuth2ClientID[]; |
| 24 | 28 |
| 25 // Specifies custom OAuth2 client secret for testing purposes. | 29 // Specifies custom OAuth2 client secret for testing purposes. |
| 26 extern const char kOAuth2ClientSecret[]; | 30 extern const char kOAuth2ClientSecret[]; |
| 27 | 31 |
| 28 } // namespace switches | 32 } // namespace switches |
| 29 | 33 |
| 30 #endif // GOOGLE_APIS_GAIA_GAIA_SWITCHES_H_ | 34 #endif // GOOGLE_APIS_GAIA_GAIA_SWITCHES_H_ |
| OLD | NEW |