| 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 // Constants used by IssueAuthToken and ClientLogin | 5 // Constants used by IssueAuthToken and ClientLogin |
| 6 | 6 |
| 7 #ifndef GOOGLE_APIS_GAIA_GAIA_CONSTANTS_H_ | 7 #ifndef GOOGLE_APIS_GAIA_GAIA_CONSTANTS_H_ |
| 8 #define GOOGLE_APIS_GAIA_GAIA_CONSTANTS_H_ | 8 #define GOOGLE_APIS_GAIA_GAIA_CONSTANTS_H_ |
| 9 | 9 |
| 10 namespace GaiaConstants { | 10 namespace GaiaConstants { |
| 11 | 11 |
| 12 // Gaia sources for accounting | 12 // Gaia sources for accounting |
| 13 extern const char kChromeOSSource[]; | 13 extern const char kChromeOSSource[]; |
| 14 extern const char kChromeSource[]; | 14 extern const char kChromeSource[]; |
| 15 extern const char kReconcilorSource[]; | |
| 16 | 15 |
| 17 // Gaia services for requesting | 16 // Gaia services for requesting |
| 18 extern const char kGaiaService[]; // uber token | 17 extern const char kGaiaService[]; // uber token |
| 19 extern const char kPicasaService[]; | 18 extern const char kPicasaService[]; |
| 20 extern const char kSyncService[]; | 19 extern const char kSyncService[]; |
| 21 extern const char kRemotingService[]; | 20 extern const char kRemotingService[]; |
| 22 | 21 |
| 23 // OAuth2 scopes. | 22 // OAuth2 scopes. |
| 24 extern const char kOAuth1LoginScope[]; | 23 extern const char kOAuth1LoginScope[]; |
| 25 extern const char kOAuthWrapBridgeUserInfoScope[]; | 24 extern const char kOAuthWrapBridgeUserInfoScope[]; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 41 | 40 |
| 42 // Used to construct a channel ID for push messaging. | 41 // Used to construct a channel ID for push messaging. |
| 43 extern const char kObfuscatedGaiaId[]; | 42 extern const char kObfuscatedGaiaId[]; |
| 44 | 43 |
| 45 // Used by wallet sign in helper. | 44 // Used by wallet sign in helper. |
| 46 extern const char kClientOAuthEmailKey[]; | 45 extern const char kClientOAuthEmailKey[]; |
| 47 | 46 |
| 48 } // namespace GaiaConstants | 47 } // namespace GaiaConstants |
| 49 | 48 |
| 50 #endif // GOOGLE_APIS_GAIA_GAIA_CONSTANTS_H_ | 49 #endif // GOOGLE_APIS_GAIA_GAIA_CONSTANTS_H_ |
| OLD | NEW |