| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 COMPONENTS_EXO_TEST_EXO_TEST_BASE_H_ | 5 #ifndef COMPONENTS_EXO_TEST_EXO_TEST_BASE_H_ |
| 6 #define COMPONENTS_EXO_TEST_EXO_TEST_BASE_H_ | 6 #define COMPONENTS_EXO_TEST_EXO_TEST_BASE_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "ash/test/ash_test_base.h" | 10 #include "ash/test/ash_test_base.h" |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 | 23 |
| 24 // Overridden from testing::Test: | 24 // Overridden from testing::Test: |
| 25 void SetUp() override; | 25 void SetUp() override; |
| 26 void TearDown() override; | 26 void TearDown() override; |
| 27 | 27 |
| 28 ExoTestHelper* exo_test_helper() { return exo_test_helper_.get(); } | 28 ExoTestHelper* exo_test_helper() { return exo_test_helper_.get(); } |
| 29 | 29 |
| 30 private: | 30 private: |
| 31 std::unique_ptr<ExoTestHelper> exo_test_helper_; | 31 std::unique_ptr<ExoTestHelper> exo_test_helper_; |
| 32 std::unique_ptr<WMHelper> wm_helper_; | 32 std::unique_ptr<WMHelper> wm_helper_; |
| 33 // base::MessageLoop loop_; |
| 33 | 34 |
| 34 DISALLOW_COPY_AND_ASSIGN(ExoTestBase); | 35 DISALLOW_COPY_AND_ASSIGN(ExoTestBase); |
| 35 }; | 36 }; |
| 36 | 37 |
| 37 } // namespace test | 38 } // namespace test |
| 38 } // namespace exo | 39 } // namespace exo |
| 39 | 40 |
| 40 #endif // COMPONENTS_EXO_TEST_EXO_TEST_BASE_H_ | 41 #endif // COMPONENTS_EXO_TEST_EXO_TEST_BASE_H_ |
| OLD | NEW |