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