| 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 76dcf10e58846047070855359b207796cb78cc4d..86c9d4ce89a1c2e75f42f33988bd689c2b4ca550 100644
|
| --- a/ui/aura/mus/window_tree_client_unittest.cc
|
| +++ b/ui/aura/mus/window_tree_client_unittest.cc
|
| @@ -73,9 +73,15 @@ 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::CreateAcceptAnyValueCallback());
|
| + converter->RegisterProperty(
|
| + kTestPropertyKey2, kTestPropertyServerKey2,
|
| + PropertyConverter::CreateAcceptAnyValueCallback());
|
| + converter->RegisterProperty(
|
| + kTestPropertyKey3, kTestPropertyServerKey3,
|
| + PropertyConverter::CreateAcceptAnyValueCallback());
|
| }
|
|
|
| // Convert a primitive aura property value to a mus transport value.
|
|
|