Index: mash/wm/property_util.cc |
diff --git a/mash/wm/property_util.cc b/mash/wm/property_util.cc |
index 5fa4931b3b3532424b53fa92072b89428d44b2c6..a7d2797d0e172633bc8d44272e29ce3390766f77 100644 |
--- a/mash/wm/property_util.cc |
+++ b/mash/wm/property_util.cc |
@@ -112,8 +112,7 @@ mus::mojom::WindowType GetWindowType( |
properties.find(mus::mojom::WindowManager::kWindowType_Property); |
if (iter != properties.end()) { |
return static_cast<mus::mojom::WindowType>( |
- mojo::TypeConverter<int32_t, const std::vector<uint8_t>>::Convert( |
- iter->second)); |
+ mojo::ConvertTo<int32_t>(iter->second)); |
} |
return mus::mojom::WindowType::POPUP; |
} |