| 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 #include "ui/aura/test/aura_test_base.h" | 5 #include "ui/aura/test/aura_test_base.h" |
| 6 | 6 |
| 7 #include "ui/aura/client/window_parenting_client.h" | 7 #include "ui/aura/client/window_parenting_client.h" |
| 8 #include "ui/aura/mus/property_utils.h" | 8 #include "ui/aura/mus/property_utils.h" |
| 9 #include "ui/aura/mus/window_tree_client.h" | 9 #include "ui/aura/mus/window_tree_client.h" |
| 10 #include "ui/aura/mus/window_tree_host_mus.h" | 10 #include "ui/aura/mus/window_tree_host_mus.h" |
| (...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 242 DCHECK(setup_called_); | 242 DCHECK(setup_called_); |
| 243 } | 243 } |
| 244 | 244 |
| 245 void AuraTestBaseWithType::SetUp() { | 245 void AuraTestBaseWithType::SetUp() { |
| 246 DCHECK(!setup_called_); | 246 DCHECK(!setup_called_); |
| 247 setup_called_ = true; | 247 setup_called_ = true; |
| 248 ConfigureBackend(GetParam()); | 248 ConfigureBackend(GetParam()); |
| 249 AuraTestBase::SetUp(); | 249 AuraTestBase::SetUp(); |
| 250 } | 250 } |
| 251 | 251 |
| 252 AuraTestBaseMus::AuraTestBaseMus() {} |
| 253 |
| 254 AuraTestBaseMus::~AuraTestBaseMus() {} |
| 255 |
| 256 void AuraTestBaseMus::SetUp() { |
| 257 ConfigureBackend(test::BackendType::MUS); |
| 258 AuraTestBase::SetUp(); |
| 259 } |
| 260 |
| 252 } // namespace test | 261 } // namespace test |
| 253 } // namespace aura | 262 } // namespace aura |
| OLD | NEW |