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.
5 // Constants used by IssueAuthToken and ClientLogin
7 #ifndef GOOGLE_APIS_GAIA_GAIA_CONSTANTS_H_
8 #define GOOGLE_APIS_GAIA_GAIA_CONSTANTS_H_
10 namespace GaiaConstants
{
12 // Gaia sources for accounting
13 extern const char kChromeOSSource
[];
14 extern const char kChromeSource
[];
15 extern const char kReconcilorSource
[];
17 // Gaia services for requesting
18 extern const char kGaiaService
[]; // uber token
19 extern const char kPicasaService
[];
20 extern const char kSyncService
[];
21 extern const char kRemotingService
[];
24 extern const char kOAuth1LoginScope
[];
25 extern const char kOAuthWrapBridgeUserInfoScope
[];
26 extern const char kDeviceManagementServiceOAuth
[];
27 extern const char kAnyApiOAuth2Scope
[];
28 extern const char kChromeSyncOAuth2Scope
[];
29 extern const char kChromeSyncSupervisedOAuth2Scope
[];
30 extern const char kGoogleTalkOAuth2Scope
[];
31 extern const char kGoogleUserInfoEmail
[];
32 extern const char kGoogleUserInfoProfile
[];
34 // Used with uber auth tokens when needed.
35 extern const char kGaiaSid
[];
36 extern const char kGaiaLsid
[];
37 extern const char kGaiaOAuthToken
[];
38 extern const char kGaiaOAuthSecret
[];
39 extern const char kGaiaOAuthDuration
[];
40 extern const char kGaiaOAuth2LoginRefreshToken
[];
42 // Used to construct a channel ID for push messaging.
43 extern const char kObfuscatedGaiaId
[];
45 // Used by wallet sign in helper.
46 extern const char kClientOAuthEmailKey
[];
48 } // namespace GaiaConstants
50 #endif // GOOGLE_APIS_GAIA_GAIA_CONSTANTS_H_