summaryrefslogtreecommitdiffstats
path: root/components/sync_driver/sync_util.h
blob: f0de6460775f7e5d7c9253b741c52433f35b4617 (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
25
26
27
28
29
30
31
32
33
34
35
36
// Copyright 2015 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 COMPONENTS_SYNC_DRIVER_SYNC_UTIL_H_
#define COMPONENTS_SYNC_DRIVER_SYNC_UTIL_H_

#include <string>

#include "components/version_info/version_info.h"

class GURL;

namespace base {
class CommandLine;
}

namespace internal {
// Default sync server URL. Visible for testing.
extern const char* kSyncServerUrl;

// Sync server URL for dev channel users. Visible for testing.
extern const char* kSyncDevServerUrl;
}

GURL GetSyncServiceURL(const base::CommandLine& command_line,
                       version_info::Channel channel);

// Helper to construct a user agent string (ASCII) suitable for use by
// the syncapi for any HTTP communication. This string is used by the sync
// backend for classifying client types when calculating statistics.
std::string MakeDesktopUserAgentForSync(version_info::Channel channel);
std::string MakeUserAgentForSync(const std::string& system,
                                 version_info::Channel channel);

#endif  // COMPONENTS_SYNC_DRIVER_SYNC_UTIL_H_