test_network_proxy.h 597 B

1234567891011121314151617181920212223
  1. // Copyright (c) 2013 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_NETWORK_PROXY_H_
  5. #define PPAPI_TESTS_TEST_NETWORK_PROXY_H_
  6. #include <string>
  7. #include "ppapi/tests/test_case.h"
  8. class TestNetworkProxy : public TestCase {
  9. public:
  10. explicit TestNetworkProxy(TestingInstance* instance);
  11. private:
  12. // TestCase implementation.
  13. virtual void RunTests(const std::string& filter);
  14. std::string TestGetProxyForURL();
  15. };
  16. #endif // PPAPI_TESTS_TEST_NETWORK_PROXY_H_