blob: c43b146627b434bec4eb18f3882799bd912fb618 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Copyright 2020 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_SAFETY_CHECK_URL_CONSTANTS_H_
#define COMPONENTS_SAFETY_CHECK_URL_CONSTANTS_H_
namespace safety_check {
// A gstatic URL returning HTTP 204 (No Content) used for connectivity check.
extern const char kConnectivityCheckUrl[];
} // namespace safety_check
#endif // COMPONENTS_SAFETY_CHECK_URL_CONSTANTS_H_
|