blob: 45ac3c80f7e668705a5d62a6663f16a555ec99bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// 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[];
} // namespace GaiaConstants
#endif // CHROME_COMMON_NET_GAIA_GAIA_CONSTANTS_H_
|