| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 CONTENT_TEST_PPAPI_PPAPI_TEST_H_ | 5 #ifndef CONTENT_TEST_PPAPI_PPAPI_TEST_H_ |
| 6 #define CONTENT_TEST_PPAPI_PPAPI_TEST_H_ | 6 #define CONTENT_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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 const std::string& test_case) OVERRIDE; | 77 const std::string& test_case) OVERRIDE; |
| 78 protected: | 78 protected: |
| 79 bool in_process_; // Controls the --ppapi-in-process switch. | 79 bool in_process_; // Controls the --ppapi-in-process switch. |
| 80 }; | 80 }; |
| 81 | 81 |
| 82 // Variant of PPAPITest that runs plugins out-of-process to test proxy | 82 // Variant of PPAPITest that runs plugins out-of-process to test proxy |
| 83 // codepaths. | 83 // codepaths. |
| 84 class OutOfProcessPPAPITest : public PPAPITest { | 84 class OutOfProcessPPAPITest : public PPAPITest { |
| 85 public: | 85 public: |
| 86 OutOfProcessPPAPITest(); | 86 OutOfProcessPPAPITest(); |
| 87 |
| 88 virtual void SetUp() OVERRIDE; |
| 89 virtual void TearDown() OVERRIDE; |
| 87 }; | 90 }; |
| 88 | 91 |
| 89 } // namespace | 92 } // namespace |
| 90 | 93 |
| 91 #endif // CONTENT_TEST_PPAPI_PPAPI_TEST_H_ | 94 #endif // CONTENT_TEST_PPAPI_PPAPI_TEST_H_ |
| OLD | NEW |