| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_TEST_PPAPI_PPAPI_TEST_H_ | 5 #ifndef CHROME_TEST_PPAPI_PPAPI_TEST_H_ |
| 6 #define CHROME_TEST_PPAPI_PPAPI_TEST_H_ | 6 #define CHROME_TEST_PPAPI_PPAPI_TEST_H_ |
| 7 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 const std::string& test_case) OVERRIDE; | 127 const std::string& test_case) OVERRIDE; |
| 128 }; | 128 }; |
| 129 | 129 |
| 130 // NaCl plugin test runner for GNU-libc runtime. | 130 // NaCl plugin test runner for GNU-libc runtime. |
| 131 class PPAPINaClGLibcTest : public PPAPINaClTest { | 131 class PPAPINaClGLibcTest : public PPAPINaClTest { |
| 132 public: | 132 public: |
| 133 virtual std::string BuildQuery(const std::string& base, | 133 virtual std::string BuildQuery(const std::string& base, |
| 134 const std::string& test_case) OVERRIDE; | 134 const std::string& test_case) OVERRIDE; |
| 135 }; | 135 }; |
| 136 | 136 |
| 137 // NaCl plugin test runner for the PNaCl + Newlib runtime. |
| 138 class PPAPINaClPNaClTest : public PPAPINaClTest { |
| 139 public: |
| 140 virtual std::string BuildQuery(const std::string& base, |
| 141 const std::string& test_case) OVERRIDE; |
| 142 }; |
| 143 |
| 137 class PPAPINaClTestDisallowedSockets : public PPAPITestBase { | 144 class PPAPINaClTestDisallowedSockets : public PPAPITestBase { |
| 138 public: | 145 public: |
| 139 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE; | 146 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE; |
| 140 | 147 |
| 141 virtual std::string BuildQuery(const std::string& base, | 148 virtual std::string BuildQuery(const std::string& base, |
| 142 const std::string& test_case) OVERRIDE; | 149 const std::string& test_case) OVERRIDE; |
| 143 }; | 150 }; |
| 144 | 151 |
| 145 class PPAPIBrokerInfoBarTest : public OutOfProcessPPAPITest { | 152 class PPAPIBrokerInfoBarTest : public OutOfProcessPPAPITest { |
| 146 public: | 153 public: |
| 147 // PPAPITestBase override: | 154 // PPAPITestBase override: |
| 148 virtual void SetUpOnMainThread() OVERRIDE; | 155 virtual void SetUpOnMainThread() OVERRIDE; |
| 149 }; | 156 }; |
| 150 | 157 |
| 151 #endif // CHROME_TEST_PPAPI_PPAPI_TEST_H_ | 158 #endif // CHROME_TEST_PPAPI_PPAPI_TEST_H_ |
| OLD | NEW |