| 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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 }; | 132 }; |
| 133 | 133 |
| 134 class PPAPINaClTestDisallowedSockets : public PPAPITestBase { | 134 class PPAPINaClTestDisallowedSockets : public PPAPITestBase { |
| 135 public: | 135 public: |
| 136 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE; | 136 virtual void SetUpCommandLine(CommandLine* command_line) OVERRIDE; |
| 137 | 137 |
| 138 virtual std::string BuildQuery(const std::string& base, | 138 virtual std::string BuildQuery(const std::string& base, |
| 139 const std::string& test_case) OVERRIDE; | 139 const std::string& test_case) OVERRIDE; |
| 140 }; | 140 }; |
| 141 | 141 |
| 142 class PPAPIBrokerInfoBarTest : public PPAPITest { | 142 class PPAPIBrokerInfoBarTest : public OutOfProcessPPAPITest { |
| 143 public: | 143 public: |
| 144 // PPAPITestBase override: | 144 // PPAPITestBase override: |
| 145 virtual void SetUpOnMainThread() OVERRIDE; | 145 virtual void SetUpOnMainThread() OVERRIDE; |
| 146 }; | 146 }; |
| 147 | 147 |
| 148 #endif // CHROME_TEST_PPAPI_PPAPI_TEST_H_ | 148 #endif // CHROME_TEST_PPAPI_PPAPI_TEST_H_ |
| OLD | NEW |