blob: 3daf8583dce3fb7281ca201b7b705ca325d1e1d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// Constants used by IssueAuthToken and ClientLogin
#ifndef CHROME_COMMON_NET_GAIA_GAIA_CONSTANTS_H_
#define CHROME_COMMON_NET_GAIA_GAIA_CONSTANTS_H_
namespace GaiaConstants {
// Gaia sources for accounting
extern const char kChromeOSSource[];
extern const char kChromeSource[];
// Gaia services for requesting
extern const char kContactsService[];
extern const char kTalkService[];
extern const char kSyncService[];
extern const char kRemotingService[];
} // namespace GaiaConstants
#endif // CHROME_COMMON_NET_GAIA_GAIA_CONSTANTS_H_
|