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 <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 public: | 143 public: |
144 virtual std::string BuildQuery(const std::string& base, | 144 virtual std::string BuildQuery(const std::string& base, |
145 const std::string& test_case) override; | 145 const std::string& test_case) override; |
146 }; | 146 }; |
147 | 147 |
148 class PPAPIPrivateNaClNewlibTest : public PPAPINaClNewlibTest { | 148 class PPAPIPrivateNaClNewlibTest : public PPAPINaClNewlibTest { |
149 protected: | 149 protected: |
150 virtual void SetUpCommandLine(base::CommandLine* command_line) override; | 150 virtual void SetUpCommandLine(base::CommandLine* command_line) override; |
151 }; | 151 }; |
152 | 152 |
153 // NaCl plugin test runner for GNU-libc runtime. | |
154 class PPAPINaClGLibcTest : public PPAPINaClTest { | |
155 public: | |
156 virtual std::string BuildQuery(const std::string& base, | |
157 const std::string& test_case) override; | |
158 }; | |
159 | |
160 class PPAPIPrivateNaClGLibcTest : public PPAPINaClGLibcTest { | |
161 protected: | |
162 virtual void SetUpCommandLine(base::CommandLine* command_line) override; | |
163 }; | |
164 | |
165 // NaCl plugin test runner for the PNaCl + Newlib runtime. | 153 // NaCl plugin test runner for the PNaCl + Newlib runtime. |
166 class PPAPINaClPNaClTest : public PPAPINaClTest { | 154 class PPAPINaClPNaClTest : public PPAPINaClTest { |
167 public: | 155 public: |
168 virtual std::string BuildQuery(const std::string& base, | 156 virtual std::string BuildQuery(const std::string& base, |
169 const std::string& test_case) override; | 157 const std::string& test_case) override; |
170 }; | 158 }; |
171 | 159 |
172 class PPAPIPrivateNaClPNaClTest : public PPAPINaClPNaClTest { | 160 class PPAPIPrivateNaClPNaClTest : public PPAPINaClPNaClTest { |
173 protected: | 161 protected: |
174 virtual void SetUpCommandLine(base::CommandLine* command_line) override; | 162 virtual void SetUpCommandLine(base::CommandLine* command_line) override; |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 const std::string& test_case) override; | 202 const std::string& test_case) override; |
215 }; | 203 }; |
216 | 204 |
217 class PPAPIBrokerInfoBarTest : public OutOfProcessPPAPITest { | 205 class PPAPIBrokerInfoBarTest : public OutOfProcessPPAPITest { |
218 public: | 206 public: |
219 // PPAPITestBase override: | 207 // PPAPITestBase override: |
220 virtual void SetUpOnMainThread() override; | 208 virtual void SetUpOnMainThread() override; |
221 }; | 209 }; |
222 | 210 |
223 #endif // CHROME_TEST_PPAPI_PPAPI_TEST_H_ | 211 #endif // CHROME_TEST_PPAPI_PPAPI_TEST_H_ |
OLD | NEW |