blob: 83eb43f8b17d34ef54efd11eea2d1aad50a3c054 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// Copyright (c) 2009 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 NET_BASE_NET_TEST_CONSTANTS_H_
#define NET_BASE_NET_TEST_CONSTANTS_H_
namespace net {
// Number of connection attempts for tests.
const int kDefaultTestConnectionAttempts = 10;
// Connection timeout in milliseconds for tests.
const int kDefaultTestConnectionTimeout = 1000;
} // namespace net
#endif // NET_BASE_NET_TEST_CONSTANTS_H_
|