| Index: ash/mus/sysui_application.cc
|
| diff --git a/ash/mus/sysui_application.cc b/ash/mus/sysui_application.cc
|
| index 5fd5aac6af670d22618fe8d572ec0f52503903b7..92302485d160fb25dfd6b507f008afd9812dc1ea 100644
|
| --- a/ash/mus/sysui_application.cc
|
| +++ b/ash/mus/sysui_application.cc
|
| @@ -131,14 +131,13 @@ class NativeWidgetFactory {
|
| mash::wm::mojom::Container container = GetContainerId(params);
|
| if (container != mash::wm::mojom::Container::COUNT) {
|
| properties[mash::wm::mojom::kWindowContainer_Property] =
|
| - mojo::TypeConverter<const std::vector<uint8_t>, int32_t>::Convert(
|
| + mojo::ConvertTo<std::vector<uint8_t>>(
|
| static_cast<int32_t>(container));
|
| }
|
| mash::wm::mojom::AshWindowType type = GetAshWindowType(params.parent);
|
| if (type != mash::wm::mojom::AshWindowType::COUNT) {
|
| properties[mash::wm::mojom::kAshWindowType_Property] =
|
| - mojo::TypeConverter<const std::vector<uint8_t>, int32_t>::Convert(
|
| - static_cast<int32_t>(type));
|
| + mojo::ConvertTo<std::vector<uint8_t>>(static_cast<int32_t>(type));
|
| }
|
| }
|
|
|
|
|