| 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" |
| 11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "content/public/test/content_browser_test.h" | 12 #include "content/public/test/content_browser_test.h" |
| 13 #include "content/public/test/javascript_test_observer.h" | 13 #include "content/public/test/javascript_test_observer.h" |
| 14 #include "net/test/spawned_test_server/spawned_test_server.h" | |
| 15 #include "url/gurl.h" | 14 #include "url/gurl.h" |
| 16 | 15 |
| 17 // This file provides test classes for writing Pepper tests for | 16 // This file provides test classes for writing Pepper tests for |
| 18 // content_browsertests. The interfaces provided here should look similar to | 17 // content_browsertests. The interfaces provided here should look similar to |
| 19 // what's available in chrome/test/ppapi. | 18 // what's available in chrome/test/ppapi. |
| 20 | 19 |
| 21 namespace base { | 20 namespace base { |
| 22 class CommandLine; | 21 class CommandLine; |
| 23 } | 22 } |
| 24 | 23 |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 public: | 85 public: |
| 87 OutOfProcessPPAPITest(); | 86 OutOfProcessPPAPITest(); |
| 88 | 87 |
| 89 void SetUp() override; | 88 void SetUp() override; |
| 90 void TearDown() override; | 89 void TearDown() override; |
| 91 }; | 90 }; |
| 92 | 91 |
| 93 } // namespace | 92 } // namespace |
| 94 | 93 |
| 95 #endif // CONTENT_TEST_PPAPI_PPAPI_TEST_H_ | 94 #endif // CONTENT_TEST_PPAPI_PPAPI_TEST_H_ |
| OLD | NEW |