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 // Supplies custom client login to OAuth2 URL for testing purposes. 11 extern const char kClientLoginToOAuth2Url[]; 12 13 // Specifies the path for GAIA authentication URL. The default value is 14 // "https://accounts.google.com". 15 extern const char kGaiaUrl[]; 16 17 // Specifies the backend server used for Google API calls. 18 // The default value is "https://www.googleapis.com". 19 extern const char kGoogleApisUrl[]; 20 21 // Specifies the backend server used for lso authentication calls. 22 // "https://accounts.google.com". 23 extern const char kLsoUrl[]; 24 25 // Specifies custom OAuth1 login scope for testing purposes. 26 extern const char kOAuth1LoginScope[]; 27 28 // Overrides OAuth wrap bridge user info scope. 29 extern const char kOAuthWrapBridgeUserInfoScope[]; 30 31 } // namespace switches 32 33 #endif // GOOGLE_APIS_GAIA_GAIA_SWITCHES_H_ 34