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.
4 
5 #ifndef GOOGLE_APIS_GAIA_GAIA_SWITCHES_H_
6 #define GOOGLE_APIS_GAIA_GAIA_SWITCHES_H_
7 
8 namespace switches {
9 
10 // Specifies the path to a config file containing GAIA urls.
11 // See "google_apis/test/data/gaia/all_urls.json" for a format example.
12 extern const char kGaiaConfig[];
13 
14 // Specifies the domain of the SAPISID cookie. The default value is
15 // "http://.google.com".
16 extern const char kGoogleUrl[];
17 
18 // Specifies the path for GAIA authentication URL. The default value is
19 // "https://accounts.google.com".
20 extern const char kGaiaUrl[];
21 
22 // Specifies the backend server used for Google API calls.
23 // "https://www.googleapis.com".
24 extern const char kGoogleApisUrl[];
25 
26 // Specifies the backend server used for lso authentication calls.
27 // "https://accounts.google.com".
28 extern const char kLsoUrl[];
29 
30 // Specifies the backend server used for OAuth issue token calls.
31 // "https://oauthaccountmanager.googleapis.com".
32 extern const char kOAuthAccountManagerUrl[];
33 
34 // Specifies custom OAuth2 client id for testing purposes.
35 extern const char kOAuth2ClientID[];
36 
37 // Specifies custom OAuth2 client secret for testing purposes.
38 extern const char kOAuth2ClientSecret[];
39 
40 }  // namespace switches
41 
42 #endif  // GOOGLE_APIS_GAIA_GAIA_SWITCHES_H_
43