Upload upstream chromium 67.0.3396
[platform/framework/web/chromium-efl.git] / components / component_updater / component_updater_url_constants.cc
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
5 #include "components/component_updater/component_updater_url_constants.h"
6
7 namespace component_updater {
8
9 // The default URL for the v3 protocol service endpoint. In some cases, the
10 // component updater is allowed to fall back to other URL endpoints, if
11 // the request to the default URL source fails.
12 //
13 // The responses to the requests made to these endpoints are always signed.
14 //
15 // The value of |kDefaultUrlSource| can be overridden with
16 // --component-updater=url-source=someurl.
17 const char kUpdaterDefaultUrl[] = "https://clients2.google.com/service/update2";
18
19 const char kUpdaterFallbackUrl[] = "http://clients2.google.com/service/update2";
20
21 const char kUpdaterDefaultUrlAlt[] =
22     "https://update.googleapis.com/service/update2";
23
24 const char kUpdaterFallbackUrlAlt[] =
25     "http://update.googleapis.com/service/update2";
26 }  // namespace component_updater