| Index: ppapi/tests/test_net_address_private.h
|
| diff --git a/ppapi/tests/test_net_address_private.h b/ppapi/tests/test_net_address_private.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..32040183041c83dafad00e03c1c1cbe9166bad6a
|
| --- /dev/null
|
| +++ b/ppapi/tests/test_net_address_private.h
|
| @@ -0,0 +1,28 @@
|
| +// Copyright (c) 2011 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 PAPPI_TESTS_TEST_NET_ADDRESS_PRIVATE_H_
|
| +#define PAPPI_TESTS_TEST_NET_ADDRESS_PRIVATE_H_
|
| +
|
| +#include <string>
|
| +
|
| +#include "ppapi/tests/test_case.h"
|
| +
|
| +class TestNetAddressPrivate : public TestCase {
|
| + public:
|
| + explicit TestNetAddressPrivate(TestingInstance* instance);
|
| +
|
| + // TestCase implementation.
|
| + virtual bool Init();
|
| + virtual void RunTest();
|
| +
|
| + private:
|
| + std::string TestAreEqual();
|
| + std::string TestAreHostsEqual();
|
| + std::string TestDescribe();
|
| + std::string TestReplacePort();
|
| + std::string TestGetAnyAddress();
|
| +};
|
| +
|
| +#endif // PAPPI_TESTS_TEST_NET_ADDRESS_PRIVATE_H_
|
|
|