| Index: ui/aura/test/mus/test_window_tree.cc
|
| diff --git a/ui/aura/test/mus/test_window_tree.cc b/ui/aura/test/mus/test_window_tree.cc
|
| index 59281188950a2595a90f3003d02d4b94cae359d7..1621fc5dee8b2232689ae17333b6c611b2277433 100644
|
| --- a/ui/aura/test/mus/test_window_tree.cc
|
| +++ b/ui/aura/test/mus/test_window_tree.cc
|
| @@ -130,10 +130,14 @@ void TestWindowTree::SetWindowBounds(uint32_t change_id,
|
| void TestWindowTree::SetClientArea(
|
| uint32_t window_id,
|
| const gfx::Insets& insets,
|
| - const base::Optional<std::vector<gfx::Rect>>& additional_client_areas) {}
|
| + const base::Optional<std::vector<gfx::Rect>>& additional_client_areas) {
|
| + last_client_area_ = insets;
|
| +}
|
|
|
| void TestWindowTree::SetHitTestMask(uint32_t window_id,
|
| - const base::Optional<gfx::Rect>& mask) {}
|
| + const base::Optional<gfx::Rect>& mask) {
|
| + last_hit_test_mask_ = mask;
|
| +}
|
|
|
| void TestWindowTree::SetCanAcceptDrops(uint32_t window_id, bool accepts_drops) {
|
| }
|
|
|