| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 UI_AURA_TEST_AURA_TEST_BASE_H_ | 5 #ifndef UI_AURA_TEST_AURA_TEST_BASE_H_ |
| 6 #define UI_AURA_TEST_AURA_TEST_BASE_H_ | 6 #define UI_AURA_TEST_AURA_TEST_BASE_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 | 154 |
| 155 // AuraTestBase: | 155 // AuraTestBase: |
| 156 void SetUp() override; | 156 void SetUp() override; |
| 157 | 157 |
| 158 private: | 158 private: |
| 159 bool setup_called_ = false; | 159 bool setup_called_ = false; |
| 160 | 160 |
| 161 DISALLOW_COPY_AND_ASSIGN(AuraTestBaseWithType); | 161 DISALLOW_COPY_AND_ASSIGN(AuraTestBaseWithType); |
| 162 }; | 162 }; |
| 163 | 163 |
| 164 class AuraTestBaseMus : public AuraTestBase { |
| 165 public: |
| 166 AuraTestBaseMus(); |
| 167 ~AuraTestBaseMus() override; |
| 168 |
| 169 // AuraTestBase: |
| 170 void SetUp() override; |
| 171 |
| 172 private: |
| 173 DISALLOW_COPY_AND_ASSIGN(AuraTestBaseMus); |
| 174 }; |
| 175 |
| 164 } // namespace test | 176 } // namespace test |
| 165 } // namespace aura | 177 } // namespace aura |
| 166 | 178 |
| 167 #endif // UI_AURA_TEST_AURA_TEST_BASE_H_ | 179 #endif // UI_AURA_TEST_AURA_TEST_BASE_H_ |
| OLD | NEW |