// 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_