| Index: components/mus/public/cpp/tests/window_unittest.cc
|
| diff --git a/components/mus/public/cpp/tests/window_unittest.cc b/components/mus/public/cpp/tests/window_unittest.cc
|
| index 005bc575642cdf4dcbffd57cce14625009c3fa2e..dc51663d6647b26e55ccdae0bfb6cfc36f0920f8 100644
|
| --- a/components/mus/public/cpp/tests/window_unittest.cc
|
| +++ b/components/mus/public/cpp/tests/window_unittest.cc
|
| @@ -791,9 +791,7 @@ class SharedPropertyChangeObserver : public WindowObserver {
|
| std::string VectorToString(const std::vector<uint8_t>* data) {
|
| if (!data)
|
| return "NULL";
|
| - gfx::Size size =
|
| - mojo::TypeConverter<gfx::Size, const std::vector<uint8_t>>::Convert(
|
| - *data);
|
| + gfx::Size size = mojo::ConvertTo<gfx::Size>(*data);
|
| return base::StringPrintf("%d,%d", size.width(), size.height());
|
| }
|
|
|
|
|