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 // Supplies custom client login to OAuth2 URL for testing purposes. | 10 // Supplies custom client login to OAuth2 URL for testing purposes. |
(...skipping 11 matching lines...) Expand all Loading... |
22 | 22 |
23 // Specifies custom OAuth1 login scope for testing purposes. | 23 // Specifies custom OAuth1 login scope for testing purposes. |
24 extern const char kOAuth1LoginScope[]; | 24 extern const char kOAuth1LoginScope[]; |
25 | 25 |
26 // Specifies custom OAuth2 issue token URL for testing purposes. | 26 // Specifies custom OAuth2 issue token URL for testing purposes. |
27 extern const char kOAuth2IssueTokenUrl[]; | 27 extern const char kOAuth2IssueTokenUrl[]; |
28 | 28 |
29 // Specifies custom OAuth2 token URL for testing purposes. | 29 // Specifies custom OAuth2 token URL for testing purposes. |
30 extern const char kOAuth2TokenUrl[]; | 30 extern const char kOAuth2TokenUrl[]; |
31 | 31 |
| 32 // Specifies custom OAuth user info URL for testing purposes. |
| 33 extern const char kOAuthUserInfoUrl[]; |
32 } // namespace switches | 34 } // namespace switches |
33 | 35 |
34 #endif // GOOGLE_APIS_GAIA_GAIA_SWITCHES_H_ | 36 #endif // GOOGLE_APIS_GAIA_GAIA_SWITCHES_H_ |
OLD | NEW |