daniimms | 9d96c37 | 2015-04-16 23:35:31 | [diff] [blame] | 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 |
| 3 | // found in the LICENSE file. |
| 4 | |
blundell | 76fe868c | 2015-08-05 10:58:55 | [diff] [blame] | 5 | #include "components/variations/variations_url_constants.h" |
daniimms | 9d96c37 | 2015-04-16 23:35:31 | [diff] [blame] | 6 | |
asvitkine | 0292659 | 2016-11-05 02:38:02 | [diff] [blame] | 7 | #include "build/build_config.h" |
| 8 | |
blundell | 57bcfed | 2015-09-04 08:44:45 | [diff] [blame] | 9 | namespace variations { |
daniimms | 9d96c37 | 2015-04-16 23:35:31 | [diff] [blame] | 10 | |
| 11 | // Default server of Variations seed info. |
asvitkine | 1078363 | 2016-08-31 20:58:07 | [diff] [blame] | 12 | #if defined(OS_ANDROID) |
| 13 | const char kDefaultServerUrl[] = |
| 14 | "https://clientservices.googleapis.com/chrome-variations/seed"; |
| 15 | #else |
daniimms | 9d96c37 | 2015-04-16 23:35:31 | [diff] [blame] | 16 | const char kDefaultServerUrl[] = |
| 17 | "https://clients4.google.com/chrome-variations/seed"; |
asvitkine | 1078363 | 2016-08-31 20:58:07 | [diff] [blame] | 18 | #endif |
daniimms | 9d96c37 | 2015-04-16 23:35:31 | [diff] [blame] | 19 | |
blundell | 57bcfed | 2015-09-04 08:44:45 | [diff] [blame] | 20 | } // namespace variations |