blob: 19ff72943008b3698aca6fbbf693af69d7945a36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Copyright (c) 2012 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 CHROME_COMMON_NET_TEST_SERVER_LOCATIONS_H_
#define CHROME_COMMON_NET_TEST_SERVER_LOCATIONS_H_
namespace chrome_common_net {
// Hostname used for the NetworkStats test. Should point to a TCP/UDP server
// that simply echoes back the request.
extern const char kEchoTestServerLocation[];
} // namespace chrome_common_net
#endif // CHROME_COMMON_NET_TEST_SERVER_LOCATIONS_H_
|