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 #include "components/mus/public/cpp/tests/test_window_tree.h" | 5 #include "components/mus/public/cpp/tests/test_window_tree.h" |
6 | 6 |
7 namespace mus { | 7 namespace mus { |
8 | 8 |
9 TestWindowTree::TestWindowTree() : got_change_(false), change_id_(0) {} | 9 TestWindowTree::TestWindowTree() : got_change_(false), change_id_(0) {} |
10 | 10 |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 | 87 |
88 void TestWindowTree::SetCanFocus(uint32_t window_id, bool can_focus) {} | 88 void TestWindowTree::SetCanFocus(uint32_t window_id, bool can_focus) {} |
89 | 89 |
90 void TestWindowTree::SetWindowTextInputState(uint32_t window_id, | 90 void TestWindowTree::SetWindowTextInputState(uint32_t window_id, |
91 mojo::TextInputStatePtr state) {} | 91 mojo::TextInputStatePtr state) {} |
92 | 92 |
93 void TestWindowTree::SetImeVisibility(uint32_t window_id, | 93 void TestWindowTree::SetImeVisibility(uint32_t window_id, |
94 bool visible, | 94 bool visible, |
95 mojo::TextInputStatePtr state) {} | 95 mojo::TextInputStatePtr state) {} |
96 | 96 |
97 void TestWindowTree::SetPreferredSize( | |
98 uint32_t window_id, | |
99 mojo::SizePtr size, | |
100 const SetPreferredSizeCallback& callback) {} | |
101 | |
102 void TestWindowTree::SetResizeBehavior(uint32_t window_id, | |
103 mojom::ResizeBehavior resize_behavior) {} | |
104 | |
105 void TestWindowTree::WmResponse(uint32_t change_id, bool response) {} | 97 void TestWindowTree::WmResponse(uint32_t change_id, bool response) {} |
106 | 98 |
107 } // namespace mus | 99 } // namespace mus |
OLD | NEW |