| 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 | 150 |
| 151 void AuraTestBase::OnEmbedRootDestroyed(WindowTreeHostMus* window_tree_host) {} | 151 void AuraTestBase::OnEmbedRootDestroyed(WindowTreeHostMus* window_tree_host) {} |
| 152 | 152 |
| 153 void AuraTestBase::OnLostConnection(WindowTreeClient* client) {} | 153 void AuraTestBase::OnLostConnection(WindowTreeClient* client) {} |
| 154 | 154 |
| 155 void AuraTestBase::OnPointerEventObserved(const ui::PointerEvent& event, | 155 void AuraTestBase::OnPointerEventObserved(const ui::PointerEvent& event, |
| 156 Window* target) {} | 156 Window* target) {} |
| 157 | 157 |
| 158 void AuraTestBase::SetWindowManagerClient(WindowManagerClient* client) {} | 158 void AuraTestBase::SetWindowManagerClient(WindowManagerClient* client) {} |
| 159 | 159 |
| 160 void AuraTestBase::OnWmConnected() {} |
| 161 |
| 160 void AuraTestBase::OnWmSetBounds(Window* window, const gfx::Rect& bounds) {} | 162 void AuraTestBase::OnWmSetBounds(Window* window, const gfx::Rect& bounds) {} |
| 161 | 163 |
| 162 bool AuraTestBase::OnWmSetProperty( | 164 bool AuraTestBase::OnWmSetProperty( |
| 163 Window* window, | 165 Window* window, |
| 164 const std::string& name, | 166 const std::string& name, |
| 165 std::unique_ptr<std::vector<uint8_t>>* new_data) { | 167 std::unique_ptr<std::vector<uint8_t>>* new_data) { |
| 166 return true; | 168 return true; |
| 167 } | 169 } |
| 168 | 170 |
| 169 void AuraTestBase::OnWmSetModalType(Window* window, ui::ModalType type) {} | 171 void AuraTestBase::OnWmSetModalType(Window* window, ui::ModalType type) {} |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 | 252 |
| 251 AuraTestBaseMus::~AuraTestBaseMus() {} | 253 AuraTestBaseMus::~AuraTestBaseMus() {} |
| 252 | 254 |
| 253 void AuraTestBaseMus::SetUp() { | 255 void AuraTestBaseMus::SetUp() { |
| 254 ConfigureBackend(test::BackendType::MUS); | 256 ConfigureBackend(test::BackendType::MUS); |
| 255 AuraTestBase::SetUp(); | 257 AuraTestBase::SetUp(); |
| 256 } | 258 } |
| 257 | 259 |
| 258 } // namespace test | 260 } // namespace test |
| 259 } // namespace aura | 261 } // namespace aura |
| OLD | NEW |