| Index: mojo/public/cpp/bindings/array_traits_wtf.h
|
| diff --git a/mojo/public/cpp/bindings/array_traits_wtf.h b/mojo/public/cpp/bindings/array_traits_wtf.h
|
| index 71f1da1116aa2916de9f3b74b9504fd6c326fea2..7e773fc66680a09ad8bb219e68e6ab43aed9baf2 100644
|
| --- a/mojo/public/cpp/bindings/array_traits_wtf.h
|
| +++ b/mojo/public/cpp/bindings/array_traits_wtf.h
|
| @@ -29,7 +29,10 @@ struct ArrayTraits<WTFArray<U>> {
|
| return input[index];
|
| }
|
|
|
| - static void Resize(WTFArray<U>& input, size_t size) { input.resize(size); }
|
| + static bool Resize(WTFArray<U>& input, size_t size) {
|
| + input.resize(size);
|
| + return true;
|
| + }
|
| };
|
|
|
| } // namespace mojo
|
|
|