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 // Specifies the path for GAIA authentication URL. The default value is
11 // "https://accounts.google.com".
12 extern const char kGaiaUrl
[];
14 // Specifies the backend server used for Google API calls.
15 // The default value is "https://www.googleapis.com".
16 extern const char kGoogleApisUrl
[];
18 // Specifies the backend server used for lso authentication calls.
19 // "https://accounts.google.com".
20 extern const char kLsoUrl
[];
22 // Specifies custom OAuth2 client id for testing purposes.
23 extern const char kOAuth2ClientID
[];
25 // Specifies custom OAuth2 client secret for testing purposes.
26 extern const char kOAuth2ClientSecret
[];
28 } // namespace switches
30 #endif // GOOGLE_APIS_GAIA_GAIA_SWITCHES_H_