blob: e0b0c8dd013a33f4513592b25338d10d76dbd970 (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
// 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.
#include "components/sync_driver/sync_util.h"
#include "base/command_line.h"
#include "base/logging.h"
#include "components/sync_driver/sync_driver_switches.h"
#include "url/gurl.h"
namespace internal {
const char* kSyncServerUrl = "https://clients4.google.com/chrome-sync";
const char* kSyncDevServerUrl = "https://clients4.google.com/chrome-sync/dev";
} // namespace internal
GURL GetSyncServiceURL(const base::CommandLine& command_line,
version_info::Channel channel) {
// By default, dev, canary, and unbranded Chromium users will go to the
// development servers. Development servers have more features than standard
// sync servers. Users with officially-branded Chrome stable and beta builds
// will go to the standard sync servers.
GURL result(internal::kSyncDevServerUrl);
if (channel == version_info::Channel::STABLE ||
channel == version_info::Channel::BETA) {
result = GURL(internal::kSyncServerUrl);
}
// Override the sync server URL from the command-line, if sync server
// command-line argument exists.
if (command_line.HasSwitch(switches::kSyncServiceURL)) {
std::string value(
command_line.GetSwitchValueASCII(switches::kSyncServiceURL));
if (!value.empty()) {
GURL custom_sync_url(value);
if (custom_sync_url.is_valid()) {
result = custom_sync_url;
} else {
LOG(WARNING) << "The following sync URL specified at the command-line "
<< "is invalid: " << value;
}
}
}
return result;
}
std::string MakeDesktopUserAgentForSync(version_info::Channel channel) {
std::string system = "";
#if defined(OS_WIN)
system = "WIN ";
#elif defined(OS_LINUX)
system = "LINUX ";
#elif defined(OS_FREEBSD)
system = "FREEBSD ";
#elif defined(OS_OPENBSD)
system = "OPENBSD ";
#elif defined(OS_MACOSX)
system = "MAC ";
#endif
return MakeUserAgentForSync(system, channel);
}
std::string MakeUserAgentForSync(const std::string& system,
version_info::Channel channel) {
std::string user_agent;
user_agent = "Chrome ";
user_agent += system;
user_agent += version_info::GetVersionNumber();
user_agent += " (" + version_info::GetLastChange() + ")";
if (!version_info::IsOfficialBuild()) {
user_agent += "-devel";
} else {
user_agent += " channel(" + version_info::GetChannelString(channel) + ")";
}
return user_agent;
}
|