OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 IOS_WEB_TEST_WEB_TEST_SUITE_H_ | 5 #ifndef IOS_WEB_TEST_WEB_TEST_SUITE_H_ |
6 #define IOS_WEB_TEST_WEB_TEST_SUITE_H_ | 6 #define IOS_WEB_TEST_WEB_TEST_SUITE_H_ |
7 | 7 |
| 8 #include "base/macros.h" |
8 #include "base/test/test_suite.h" | 9 #include "base/test/test_suite.h" |
9 | 10 |
10 namespace web { | 11 namespace web { |
11 | 12 |
12 class WebTestSuite : public base::TestSuite { | 13 class WebTestSuite : public base::TestSuite { |
13 public: | 14 public: |
14 WebTestSuite(int argc, char** argv); | 15 WebTestSuite(int argc, char** argv); |
15 ~WebTestSuite() override; | 16 ~WebTestSuite() override; |
16 | 17 |
17 protected: | 18 protected: |
18 void Initialize() override; | 19 void Initialize() override; |
19 | 20 |
20 private: | 21 private: |
21 | 22 |
22 DISALLOW_COPY_AND_ASSIGN(WebTestSuite); | 23 DISALLOW_COPY_AND_ASSIGN(WebTestSuite); |
23 }; | 24 }; |
24 | 25 |
25 } // namespace web | 26 } // namespace web |
26 | 27 |
27 #endif // IOS_WEB_TEST_WEB_TEST_SUITE_H_ | 28 #endif // IOS_WEB_TEST_WEB_TEST_SUITE_H_ |
OLD | NEW |