blob: d395d252f431b6a951f5ab3cf15dc6ff65638f95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// 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.
#ifndef CHROME_BROWSER_SYNC_SYNC_CONSTANTS_H_
#define CHROME_BROWSER_SYNC_SYNC_CONSTANTS_H_
#pragma once
namespace browser_sync {
extern const char kSyncLegacyServiceUrl[];
extern const char kSyncServiceUrl[];
extern const char kSyncLegacyServiceId[];
extern const char kSyncServiceId[];
extern const int kSyncPriority;
extern const char kSyncServiceSpecificData[];
} // namespace browser_sync
#endif // CHROME_BROWSER_SYNC_SYNC_CONSTANTS_H_
|