Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(20)

Side by Side Diff: chrome/test/ppapi/ppapi_test.h

Issue 12288013: Add PNaCl PPAPI browser tests via pre-translation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/test/ppapi/ppapi_browsertest.cc ('k') | chrome/test/ppapi/ppapi_test.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « chrome/test/ppapi/ppapi_browsertest.cc ('k') | chrome/test/ppapi/ppapi_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698