| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "components/sync/driver/sync_util.h" | 5 #include "components/sync/driver/sync_util.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/logging.h" | 8 #include "base/logging.h" |
| 9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 #include "components/sync/driver/sync_driver_switches.h" | 10 #include "components/sync/driver/sync_driver_switches.h" |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 #elif defined(OS_OPENBSD) | 38 #elif defined(OS_OPENBSD) |
| 39 system = "OPENBSD "; | 39 system = "OPENBSD "; |
| 40 #elif defined(OS_MACOSX) | 40 #elif defined(OS_MACOSX) |
| 41 system = "MAC "; | 41 system = "MAC "; |
| 42 #endif | 42 #endif |
| 43 return system; | 43 return system; |
| 44 } | 44 } |
| 45 | 45 |
| 46 } // namespace | 46 } // namespace |
| 47 | 47 |
| 48 namespace syncer { |
| 48 namespace internal { | 49 namespace internal { |
| 49 | 50 |
| 50 const char* kSyncServerUrl = "https://clients4.google.com/chrome-sync"; | 51 const char* kSyncServerUrl = "https://clients4.google.com/chrome-sync"; |
| 51 | 52 |
| 52 const char* kSyncDevServerUrl = "https://clients4.google.com/chrome-sync/dev"; | 53 const char* kSyncDevServerUrl = "https://clients4.google.com/chrome-sync/dev"; |
| 53 | 54 |
| 54 std::string FormatUserAgentForSync(const std::string& system, | 55 std::string FormatUserAgentForSync(const std::string& system, |
| 55 version_info::Channel channel) { | 56 version_info::Channel channel) { |
| 56 std::string user_agent; | 57 std::string user_agent; |
| 57 user_agent = "Chrome "; | 58 user_agent = "Chrome "; |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 } | 98 } |
| 98 } | 99 } |
| 99 return result; | 100 return result; |
| 100 } | 101 } |
| 101 | 102 |
| 102 std::string MakeUserAgentForSync(version_info::Channel channel, | 103 std::string MakeUserAgentForSync(version_info::Channel channel, |
| 103 bool is_tablet) { | 104 bool is_tablet) { |
| 104 std::string system = GetSystemString(is_tablet); | 105 std::string system = GetSystemString(is_tablet); |
| 105 return internal::FormatUserAgentForSync(system, channel); | 106 return internal::FormatUserAgentForSync(system, channel); |
| 106 } | 107 } |
| 108 |
| 109 } // namespace syncer |
| OLD | NEW |