blob: 251535fdb7dc309291c9162b823e41b6bef1a7ce [file] [log] [blame]
// 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 NET_BASE_TEST_DATA_DIRECTORY_H_
#define NET_BASE_TEST_DATA_DIRECTORY_H_
#include "base/file_path.h"
namespace net {
// Returns the FilePath object representing the absolute path in the source
// tree that contains certificates for testing.
FilePath GetTestCertsDirectory();
// Returns the FilePath object representing the relative path containing
// resource files for testing WebSocket. Typically the FilePath will be used as
// document root argument for net::TestServer with TYPE_WS or TYPE_WSS.
FilePath GetWebSocketTestDataDirectory();
} // namespace net
#endif // NET_BASE_TEST_DATA_DIRECTORY_H_