| Index: ui/aura/mus/window_tree_client_unittest.cc
|
| diff --git a/ui/aura/mus/window_tree_client_unittest.cc b/ui/aura/mus/window_tree_client_unittest.cc
|
| index 8289b88a825ad8f775c58fafb359db73ce836169..d216dea0bd653ce6cda5572ee9c7ccb25aaea26e 100644
|
| --- a/ui/aura/mus/window_tree_client_unittest.cc
|
| +++ b/ui/aura/mus/window_tree_client_unittest.cc
|
| @@ -75,9 +75,12 @@ bool IsWindowHostVisible(Window* window) {
|
|
|
| // Register some test window properties for aura/mus conversion.
|
| void RegisterTestProperties(PropertyConverter* converter) {
|
| - converter->RegisterProperty(kTestPropertyKey1, kTestPropertyServerKey1);
|
| - converter->RegisterProperty(kTestPropertyKey2, kTestPropertyServerKey2);
|
| - converter->RegisterProperty(kTestPropertyKey3, kTestPropertyServerKey3);
|
| + converter->RegisterProperty(kTestPropertyKey1, kTestPropertyServerKey1,
|
| + PropertyConverter::AcceptAnyValue());
|
| + converter->RegisterProperty(kTestPropertyKey2, kTestPropertyServerKey2,
|
| + PropertyConverter::AcceptAnyValue());
|
| + converter->RegisterProperty(kTestPropertyKey3, kTestPropertyServerKey3,
|
| + PropertyConverter::AcceptAnyValue());
|
| }
|
|
|
| // Convert a primitive aura property value to a mus transport value.
|
|
|