test_host_resolver_crash.h 666 B

12345678910111213141516171819202122232425
  1. // Copyright 2018 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #ifndef PPAPI_TESTS_TEST_HOST_RESOLVER_CRASH_H_
  5. #define PPAPI_TESTS_TEST_HOST_RESOLVER_CRASH_H_
  6. #include <string>
  7. #include "ppapi/c/pp_stdint.h"
  8. #include "ppapi/tests/test_case.h"
  9. class TestHostResolverCrash : public TestCase {
  10. public:
  11. explicit TestHostResolverCrash(TestingInstance* instance);
  12. // TestCase implementation.
  13. virtual bool Init();
  14. virtual void RunTests(const std::string& filter);
  15. private:
  16. std::string TestBasic();
  17. };
  18. #endif // PPAPI_TESTS_TEST_HOST_RESOLVER_CRASH_H_