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