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

Unified Diff: chrome/test/ppapi/ppapi_test.h

Issue 150663007: Disable PPAPI*NaCl* tests in the disable_nacl=1 builds (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 6 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/test/ppapi/ppapi_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/ppapi/ppapi_test.h
===================================================================
--- chrome/test/ppapi/ppapi_test.h (revision 244100)
+++ chrome/test/ppapi/ppapi_test.h (working copy)
@@ -48,15 +48,16 @@
// Returns the URL to load for file: tests.
GURL GetTestFileUrl(const std::string& test_case);
- void RunTest(const std::string& test_case);
+ virtual void RunTest(const std::string& test_case);
// Run the test and reload. This can test for clean shutdown, including leaked
// instance object vars.
- void RunTestAndReload(const std::string& test_case);
- void RunTestViaHTTP(const std::string& test_case);
- void RunTestWithSSLServer(const std::string& test_case);
- void RunTestWithWebSocketServer(const std::string& test_case);
- void RunTestIfAudioOutputAvailable(const std::string& test_case);
- void RunTestViaHTTPIfAudioOutputAvailable(const std::string& test_case);
+ virtual void RunTestAndReload(const std::string& test_case);
+ virtual void RunTestViaHTTP(const std::string& test_case);
+ virtual void RunTestWithSSLServer(const std::string& test_case);
+ virtual void RunTestWithWebSocketServer(const std::string& test_case);
+ virtual void RunTestIfAudioOutputAvailable(const std::string& test_case);
+ virtual void RunTestViaHTTPIfAudioOutputAvailable(
+ const std::string& test_case);
std::string StripPrefixes(const std::string& test_name);
protected:
@@ -128,6 +129,17 @@
class PPAPINaClTest : public PPAPITestBase {
public:
virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE;
+ // PPAPITestBase:
raymes 2014/02/19 23:47:08 nit: // PPAPITestBase overrides.
+ virtual void RunTest(const std::string& test_case) OVERRIDE;
+ virtual void RunTestAndReload(const std::string& test_case) OVERRIDE;
+ virtual void RunTestViaHTTP(const std::string& test_case) OVERRIDE;
+ virtual void RunTestWithSSLServer(const std::string& test_case) OVERRIDE;
+ virtual void RunTestWithWebSocketServer(
+ const std::string& test_case) OVERRIDE;
+ virtual void RunTestIfAudioOutputAvailable(
+ const std::string& test_case) OVERRIDE;
+ virtual void RunTestViaHTTPIfAudioOutputAvailable(
+ const std::string& test_case) OVERRIDE;
};
// NaCl plugin test runner for Newlib runtime.
« no previous file with comments | « no previous file | chrome/test/ppapi/ppapi_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698