// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef NET_TEST_EMBEDDED_TEST_SERVER_SIMPLE_CONNECTION_LISTENER_H_ #define NET_TEST_EMBEDDED_TEST_SERVER_SIMPLE_CONNECTION_LISTENER_H_ #include "base/run_loop.h" #include "net/test/embedded_test_server/embedded_test_server_connection_listener.h" namespace net { class StreamSocket; namespace test_server { // Waits for a specified number of connection attempts to be seen. class SimpleConnectionListener : public EmbeddedTestServerConnectionListener { … }; } // namespace test_server } // namespace net #endif // NET_TEST_EMBEDDED_TEST_SERVER_SIMPLE_CONNECTION_LISTENER_H_