1 // Copyright 2015 The Chromium Authors 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #ifndef NET_TEST_EMBEDDED_TEST_SERVER_DEFAULT_HANDLERS_H_ 6 #define NET_TEST_EMBEDDED_TEST_SERVER_DEFAULT_HANDLERS_H_ 7 8 #include "net/test/embedded_test_server/embedded_test_server.h" 9 10 namespace net::test_server { 11 12 // This file is only meant for compatibility with testserver.py. No 13 // additional handlers should be added here that don't affect multiple 14 // distinct tests. 15 16 // Registers default handlers for use in tests. 17 void RegisterDefaultHandlers(EmbeddedTestServer* server); 18 19 } // namespace net::test_server 20 21 #endif // NET_TEST_EMBEDDED_TEST_SERVER_DEFAULT_HANDLERS_H_ 22