OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef UI_EVENTS_TEST_TEST_SUITE_H_ |
| 6 #define UI_EVENTS_TEST_TEST_SUITE_H_ |
| 7 |
| 8 #include "base/compiler_specific.h" |
| 9 #include "base/test/test_suite.h" |
| 10 |
| 11 namespace ui { |
| 12 namespace test { |
| 13 |
| 14 class EventsTestSuite : public base::TestSuite { |
| 15 public: |
| 16 EventsTestSuite(int argc, char** argv); |
| 17 virtual ~EventsTestSuite(); |
| 18 }; |
| 19 |
| 20 } // namespace test |
| 21 } // namespace ui |
| 22 |
| 23 #endif // UI_EVENTS_TEST_TEST_SUITE_H_ |
OLD | NEW |