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
3 // found in the LICENSE file.
5 #ifndef GOOGLE_APIS_GAIA_GAIA_SWITCHES_H_
6 #define GOOGLE_APIS_GAIA_GAIA_SWITCHES_H_
10 // Supplies custom client login to OAuth2 URL for testing purposes.
11 extern const char kClientLoginToOAuth2Url
[];
13 // Specifies the path for GAIA authentication URL. The default value is
14 // "https://accounts.google.com".
15 extern const char kGaiaUrl
[];
17 // Specifies the backend server used for Google API calls.
18 // The default value is "https://www.googleapis.com".
19 extern const char kGoogleApisUrl
[];
21 // Specifies the backend server used for lso authentication calls.
22 // "https://accounts.google.com".
23 extern const char kLsoUrl
[];
25 // Specifies custom OAuth2 client id for testing purposes.
26 extern const char kOAuth2ClientID
[];
28 // Specifies custom OAuth2 client secret for testing purposes.
29 extern const char kOAuth2ClientSecret
[];
31 } // namespace switches
33 #endif // GOOGLE_APIS_GAIA_GAIA_SWITCHES_H_